LocationEditableField constructor

const LocationEditableField({
  1. Key? key,
  2. required String label,
  3. required String? text,
  4. required ValueChanged<String> onChanged,
  5. TextInputType keyboardType = TextInputType.text,
  6. List<TextInputFormatter> inputFormatters = const [],
  7. String? validator(
    1. 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);