showUpdated static method

void showUpdated(
  1. BuildContext context
)

Shows a "Updated successfully" snackbar

Implementation

static void showUpdated(BuildContext context) {
  SavePointsSnackbar.showSuccess(
    context,
    title: 'Updated!',
    subtitle: 'Changes have been applied',
    showProgressIndicator: true,
  );
}