PhoneEntryConfig constructor

const PhoneEntryConfig({
  1. String title = 'Enter your phone number',
  2. String subtitle = "We'll send you a verification code",
  3. FxFlagShape flagShape = FxFlagShape.circle,
  4. double flagSize = 28,
  5. String buttonLabel = 'Send code',
  6. Widget keyboardBuilder(
    1. TextEditingController phoneController
    )?,
})

Implementation

const PhoneEntryConfig({
  this.title = 'Enter your phone number',
  this.subtitle = "We'll send you a verification code",
  this.flagShape = FxFlagShape.circle,
  this.flagSize = 28,
  this.buttonLabel = 'Send code',
  this.keyboardBuilder,
});