ScanError constructor

const ScanError({
  1. required String filePath,
  2. required String message,
  3. bool isWarning = false,
})

Implementation

const ScanError({
  required this.filePath,
  required this.message,
  this.isWarning = false,
});