MFAWidget constructor

const MFAWidget({
  1. required dynamic onCompleted(
    1. String code
    ),
  2. dynamic onSubmitted(
    1. String code
    )?,
  3. PinTheme? defaultPinTheme,
  4. PinTheme? focusedPinTheme,
  5. PinTheme? submittedPinTheme,
  6. PinTheme? followingPinTheme,
  7. PinTheme? disabledPinTheme,
  8. PinTheme? errorPinTheme,
  9. List<int>? seperatorPositions,
  10. Widget errorBuilder(
    1. String?,
    2. String
    )?,
  11. String? errorText,
  12. TextStyle? errorTextStyle,
  13. String? validator(
    1. String?
    )?,
  14. Widget submitButtonBuilder(
    1. Function onTap
    )?,
  15. int length = 6,
  16. Key? key,
})

Constructs an MFAWidget.

onCompleted: Callback function triggered when the MFA code is completed. onSubmitted: Callback function triggered when the MFA code is submitted. length: The length of the MFA code. defaultPinTheme: The theme for the default state of the input pins. focusedPinTheme: The theme for the focused state of the input pins. submittedPinTheme: The theme for the submitted state of the input pins. followingPinTheme: The theme for the pins following the submitted pin. disabledPinTheme: The theme for disabled input pins. errorPinTheme: The theme for input pins in error state. seperatorPositions: Positions for separators between input pins. errorText: Text to display when there's an error. validator: Validator function to validate the input. errorBuilder: Builder function to customize the error display. errorTextStyle: Style for the error text. submitButtonBuilder: Builder function to customize the submit button.

Implementation

const MFAWidget({
  required this.onCompleted,
  this.onSubmitted,
  this.defaultPinTheme,
  this.focusedPinTheme,
  this.submittedPinTheme,
  this.followingPinTheme,
  this.disabledPinTheme,
  this.errorPinTheme,
  this.seperatorPositions,
  this.errorBuilder,
  this.errorText,
  this.errorTextStyle,
  this.validator,
  this.submitButtonBuilder,
  this.length = 6,
  super.key,
}) : assert(
        (onSubmitted == null && submitButtonBuilder == null) ||
            (onSubmitted != null && submitButtonBuilder != null),
        'onSubmitted and submitButtonBuilder must be both null or both'
        ' not null',
      );