UISMSFormDialog constructor

const UISMSFormDialog({
  1. String title = "SMS SignIn",
  2. String defaultSubmitText = "Login",
  3. void defaultSubmitAction(
    1. String phoneNumber
    )?,
})

Display the login form.

Normally, UILoginForm.show() is executed to output with UILoginForm.show().

Implementation

const UISMSFormDialog({
  this.title = "SMS SignIn",
  this.defaultSubmitText = "Login",
  this.defaultSubmitAction,
});