getInputDecoration static method
Implementation
static InputDecoration getInputDecoration(LocationPickerTheme theme, String hint) {
return theme.inputDecoration ??
InputDecoration(
hintText: hint,
hintStyle: theme.hintStyle,
border: const OutlineInputBorder(),
contentPadding: theme.padding ?? const EdgeInsets.symmetric(horizontal: 12, vertical: 16),
);
}