DoctorView constructor

const DoctorView({
  1. required String pluginName,
  2. required List<DoctorSection> sections,
  3. required int errors,
  4. required int warnings,
  5. VoidCallback? onExit,
  6. Key? key,
})

Implementation

const DoctorView({
  required this.pluginName,
  required this.sections,
  required this.errors,
  required this.warnings,
  this.onExit,
  super.key,
});