LocationEditableField constructor
- Key? key,
- required String label,
- required String? text,
- required ValueChanged<
String> onChanged, - TextInputType keyboardType = TextInputType.text,
- List<
TextInputFormatter> inputFormatters = const [], - String? validator(
- String value
Implementation
const LocationEditableField({
Key? key,
required this.label,
required this.text,
required this.onChanged,
this.keyboardType = TextInputType.text,
this.inputFormatters = const [],
this.validator,
}) : super(key: key);