LocationInput constructor

const LocationInput({
  1. required TextEditingController controller,
  2. Key? key,
  3. required ValueChanged<String> onChange,
})

Implementation

const LocationInput({
  required this.controller,
  Key? key,
  required this.onChange,
}) : super(key: key);