updateAppBar method

void updateAppBar()

Implementation

void updateAppBar() {
  if (!mounted) return;
  appBar?.title = buildTitle(context);
  appBar?.actions = buildActions(context);
  appBar?.centerTitle = isTitleCenter();
  appBar?.updateState();
}