BundleValidationError constructor

const BundleValidationError({
  1. required String code,
  2. required String message,
  3. String? path,
  4. BundleValidationSeverity severity = BundleValidationSeverity.error,
})

Implementation

const BundleValidationError({
  required this.code,
  required this.message,
  this.path,
  this.severity = BundleValidationSeverity.error,
});