ShowTextFieldModal constructor
ShowTextFieldModal({
- String? value,
- required String title,
- TextInputType? keyboardType = TextInputType.number,
- String? validator(
- String? value
- VoidCallback? clearCallBack,
- required dynamic selectCallBack(
- String value
Implementation
ShowTextFieldModal({
this.value,
required this.title,
this.keyboardType = TextInputType.number,
this.validator,
this.clearCallBack,
required this.selectCallBack,
}) : super();