FormException constructor

const FormException({
  1. required String message,
  2. required FormErrorCode code,
  3. required PlatformException originalException,
})

Const constructor for FormException.

Implementation

const FormException({
  required String message,
  required FormErrorCode code,
  required PlatformException originalException,
}) : super(
        message: message,
        code: code,
        originalException: originalException,
      );