showUpdatingPlaceSnackbar function
- BuildContext context,
- bool coordsChanged
Shows updating place snackbar.
Implementation
void showUpdatingPlaceSnackbar(BuildContext context, bool coordsChanged) {
SnackBarHelper.showLoading(
context,
coordsChanged
? 'Updating place and fetching new address...'
: 'Updating place...',
);
}