TextInputWidget constructor

const TextInputWidget({
  1. Key? key,
  2. required String label,
  3. required CreditCardTheme theme,
  4. required double fontSize,
  5. required dynamic onChanged(
    1. String
    )?,
  6. List<TextInputFormatter>? formatters,
  7. TextInputType? keyboardType,
  8. bool? password,
  9. Widget? suffixIcon,
  10. TextEditingController? controller,
  11. double bottom = 0,
  12. double left = 0,
  13. double right = 0,
  14. double top = 0,
})

Implementation

const TextInputWidget({
  super.key,
  required this.label,
  required this.theme,
  required this.fontSize,
  required this.onChanged,
  this.formatters,
  this.keyboardType,
  this.password,
  this.suffixIcon,
  this.controller,
  this.bottom = 0,
  this.left = 0,
  this.right = 0,
  this.top = 0,
});