updateTitle method

void updateTitle(
  1. String newTitle
)

Updates the group's title.

The title appears in the group's header bar and is automatically saved when serializing the workflow.

Implementation

void updateTitle(String newTitle) {
  runInAction(() {
    _observableTitle.value = newTitle;
  });
}