ConfirmSignInMFAForm constructor

ConfirmSignInMFAForm({
  1. Key? key,
})

A prebuilt form for completing the sign in process with an MFA code, from either SMS or TOTP.

Implementation

ConfirmSignInMFAForm({super.key})
    : super._(
        fields: [
          ConfirmSignInFormField.verificationCode(),
        ],
        actions: const [
          ConfirmSignInMFAButton(),
          BackToSignInButton(),
        ],
      );