RohdFormatInfo constructor

const RohdFormatInfo({
  1. required bool available,
  2. bool fileFound = false,
  3. String? path,
})

Creates availability information for a source format.

Implementation

const RohdFormatInfo({
  required this.available,
  this.fileFound = false,
  this.path,
});