TextInputWidget constructor
const
TextInputWidget({
- Key? key,
- required String label,
- required CreditCardTheme theme,
- required double fontSize,
- required dynamic onChanged()?,
- List<
TextInputFormatter> ? formatters, - TextInputType? keyboardType,
- bool? password,
- Widget? suffixIcon,
- TextEditingController? controller,
- double bottom = 0,
- double left = 0,
- double right = 0,
- 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,
});