notifyChangesOf static method

void Function() notifyChangesOf(
  1. BuildContext context
)

Implementation

static void Function() notifyChangesOf(BuildContext context) {
  final result = maybeNotifyChangesOf(context);
  assert(result != null, 'No MacosToolbarPassthroughScope found in context');
  return result!;
}