showPlaceNotFoundSnackbar function
- BuildContext context
Shows a snackbar indicating place not found.
Implementation
void showPlaceNotFoundSnackbar(BuildContext context) {
ScaffoldMessenger.of(context).showSnackBar(
const SnackBar(
content: Text('Place not found'),
backgroundColor: Colors.orange,
),
);
}