showDeleted static method

void showDeleted(
  1. BuildContext context
)

Shows a "Deleted successfully" snackbar

Implementation

static void showDeleted(BuildContext context) {
  SavePointsSnackbar.showSuccess(
    context,
    title: 'Deleted',
    subtitle: 'Item has been removed',
    showProgressIndicator: true,
  );
}