showNoInternet static method
Shows a "No internet connection" snackbar
Implementation
static void showNoInternet(BuildContext context) {
SavePointsSnackbar.showError(
context,
title: 'No Internet',
subtitle: 'Please check your connection',
showProgressIndicator: true,
);
}