LokotroMobileMoneyPhoneInput constructor

const LokotroMobileMoneyPhoneInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. ValueChanged<String>? onChanged,
  4. ValueChanged<LokotroCountry>? onCountryChanged,
  5. String? initialCountryCode,
  6. bool enabled = true,
  7. String? label,
  8. String? hint,
  9. String? externalValidator(
    1. String?
    )?,
})

Implementation

const LokotroMobileMoneyPhoneInput({
  super.key,
  required this.controller,
  this.onChanged,
  this.onCountryChanged,
  this.initialCountryCode,
  this.enabled = true,
  this.label,
  this.hint,
  this.externalValidator,
});