ModelParsingException constructor

ModelParsingException({
  1. required String modelName,
  2. String? fieldName,
  3. Type? expectedType,
  4. dynamic receivedValue,
  5. int? index,
})

Creates a new ModelParsingException.

Implementation

ModelParsingException({
  required this.modelName,
  this.fieldName,
  this.expectedType,
  this.receivedValue,
  this.index,
});