Doctor
Category: Doctor
Source: doctor.dart
Enums
DoctorSeverity
| Value | Description |
|---|---|
ok | |
info | |
warning | |
error |
Classes
DoctorFinding
Constructor
dart
const DoctorFinding({
required this.severity,
required this.section,
required this.message,
this.path,
})Properties
| Property | Type | Description |
|---|---|---|
severity | DoctorSeverity | |
section | String | |
message | String | |
path | String? |
DoctorReport
Constructor
dart
const DoctorReport(this.findings)Properties
| Property | Type | Description |
|---|---|---|
findings | List<DoctorFinding> | |
okCount | int get | |
infoCount | int get | |
warningCount | int get | |
errorCount | int get | |
hasErrors | bool get | |
okCount | int get | |
infoCount | int get | |
warningCount | int get | |
errorCount | int get | |
hasErrors | bool get |