animate method

void animate({
  1. bool showSnackbar = false,
})

Implementation

void animate({bool showSnackbar = false}) {
  if (isLocked) {
    if (isLeftNavigatorLocked && !showSnackbar)
      animateUpdateKey.update();
    else
      SnackBarController.showIconAndText(Icons.save,
          "Bitte den aktuellen Bearbeitungsvorgang abbrechen oder speichern!");
  }
}