showSaved static method

void showSaved(
  1. BuildContext context
)

Shows a "Saved successfully" snackbar

Implementation

static void showSaved(BuildContext context) {
  SavePointsSnackbar.showSuccess(
    context,
    title: 'Saved!',
    subtitle: 'Your changes have been saved',
    showProgressIndicator: true,
  );
}