showExportResultSnackbar function
- BuildContext context,
- bool success,
- int count
Shows export success/failure snackbar.
Implementation
void showExportResultSnackbar(BuildContext context, bool success, int count) {
if (success) {
SnackBarHelper.showSuccess(context, 'Exported $count places successfully');
} else {
SnackBarHelper.showError(context, 'Failed to export places');
}
}