PhoneInputView constructor

const PhoneInputView({
  1. Key? key,
  2. required Object flowKey,
  3. SMSCodeRequestedCallback? onSMSCodeRequested,
  4. FirebaseAuth? auth,
  5. AuthAction? action,
  6. PhoneNumberSubmitCallback? onSubmit,
  7. WidgetBuilder? subtitleBuilder,
  8. WidgetBuilder? footerBuilder,
  9. MultiFactorSession? multiFactorSession,
  10. PhoneMultiFactorInfo? mfaHint,
})

A view that could be used to build a custom PhoneInputScreen.

Implementation

const PhoneInputView({
  super.key,
  required this.flowKey,
  this.onSMSCodeRequested,
  this.auth,
  this.action,
  this.onSubmit,
  this.subtitleBuilder,
  this.footerBuilder,
  this.multiFactorSession,
  this.mfaHint,
});