InvalidFormatException constructor

InvalidFormatException(
  1. InvalidFormatType formatType, {
  2. String? originalValue,
  3. String? customMessage,
})

Creates the exception with the given parameters.

Implementation

InvalidFormatException(this.formatType,
    {this.originalValue, this.customMessage})
    : super();