ModelValidationException constructor

const ModelValidationException(
  1. String message, [
  2. dynamic cause,
  3. String? filePath,
  4. int? actualSize,
  5. int? expectedMinSize,
])

Implementation

const ModelValidationException(
  super.message, [
  super.cause,
  this.filePath,
  this.actualSize,
  this.expectedMinSize,
]);