MissingFieldException constructor

MissingFieldException(
  1. String fieldName,
  2. bool emptyIsNull,
  3. bool nullable
)

Implementation

MissingFieldException(this.fieldName, this.emptyIsNull, this.nullable) :
message = "$fieldName was missing${nullable ? ", and emptyIsNull is $emptyIsNull!" : "!"}";