PhoneInputWidget constructor

PhoneInputWidget({
  1. Key? key,
  2. required String keyName,
  3. required bool isArabic,
  4. String? labelText,
  5. bool isRequired = true,
  6. bool isEnabled = true,
  7. Color? fillColor,
  8. String? hintText,
  9. PhoneNumber? initialValue,
  10. dynamic onChange(
    1. String
    )?,
})

Implementation

PhoneInputWidget({
  Key? key,
  required this.keyName,
  required this.isArabic,
  this.labelText,
  this.isRequired = true,
  this.isEnabled = true,
  this.fillColor,
  this.hintText,
  this.initialValue,
  this.onChange,
}) : super(key: key);