MobileNumberCode constructor

const MobileNumberCode({
  1. Key? key,
  2. Color? color,
  3. Decoration? decoration,
  4. double? width,
  5. double? height,
  6. EdgeInsetsGeometry? padding,
  7. String? downArrow,
  8. required TextEditingController textEditingController,
  9. TextInputType? keyBoardType,
  10. InputDecoration? textFieldDecoration,
  11. Widget? child,
  12. dynamic onChanged(
    1. String
    )?,
  13. String? validator(
    1. String?
    )?,
})

Implementation

const MobileNumberCode({
  Key? key,
  this.color,
  this.decoration,
  this.width,
  this.height,
  this.padding,
  this.downArrow,
  required this.textEditingController,
  this.keyBoardType,
  this.textFieldDecoration,
  this.child,
  this.onChanged,
  this.validator,
}) : super(key: key);