showNoInternet static method

void showNoInternet(
  1. BuildContext context
)

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,
  );
}