TextFieldContainer constructor Null safety
- {Key? key,
- required TextEditingController textController,
- required String label,
- required Function errorCallback,
- TextInputFormatter? inputFormatter,
- List<
String> ? autoCompleteList, - Color color = Colors.transparent}
Implementation
const TextFieldContainer(
{Key? key,
required this.textController,
required this.label,
required this.errorCallback,
this.inputFormatter,
this.autoCompleteList,
this.color = Colors.transparent})
: super(key: key);