ShowTextFieldModal constructor

ShowTextFieldModal({
  1. String? value,
  2. required String title,
  3. TextInputType? keyboardType = TextInputType.number,
  4. String? validator(
    1. String? value
    )?,
  5. VoidCallback? clearCallBack,
  6. required dynamic selectCallBack(
    1. String value
    ),
})

Implementation

ShowTextFieldModal({
  this.value,
  required this.title,
  this.keyboardType = TextInputType.number,
  this.validator,
  this.clearCallBack,
  required this.selectCallBack,
}) : super();