InvalidFieldValueException constructor

const InvalidFieldValueException(
  1. String message, {
  2. String? code = 'P2006',
  3. Object? originalError,
  4. Map<String, dynamic>? context,
  5. String? field,
  6. dynamic value,
  7. String? expectedType,
})

Implementation

const InvalidFieldValueException(
  super.message, {
  super.code = 'P2006',
  super.originalError,
  super.context,
  this.field,
  this.value,
  this.expectedType,
});