IdentificationException constructor

IdentificationException(
  1. ErrorCode code,
  2. EcMessageKey key, [
  3. Map<String, Object?> args = const {}
])

Creates a new identification validation exception.

code The error code for this exception. key The message key describing this exception. args Values the message needs, such as the expected number of digits.

Implementation

IdentificationException(this.code, this.key, [this.args = const{}]);