ValidateOutput constructor

const ValidateOutput({
  1. required bool valid,
  2. List<String> errors = const [],
  3. List<String> warnings = const [],
})

Implementation

const ValidateOutput({
  required this.valid,
  this.errors = const [],
  this.warnings = const [],
});