MissingFieldException constructor

MissingFieldException({
  1. required Object field,
  2. Object? message,
})

Create a new MissingFieldException optionally specifying a message and the problematic field.

Implementation

MissingFieldException({
  required this.field,
  this.message,
});