RohdModuleInfo constructor

const RohdModuleInfo({
  1. required bool extensionAvailable,
  2. String? module,
  3. Map<RohdSourceFormat, RohdFormatInfo> formats = const {},
  4. String? error,
  5. bool? dtdHealthy,
  6. bool dtdRegistrationConflict = false,
  7. String? dtdStatusMessage,
  8. bool fstLoading = false,
})

Creates information returned by the ROHD extension for a module.

Implementation

const RohdModuleInfo({
  required this.extensionAvailable,
  this.module,
  this.formats = const {},
  this.error,
  this.dtdHealthy,
  this.dtdRegistrationConflict = false,
  this.dtdStatusMessage,
  this.fstLoading = false,
});