of static method

Returns the data most closely associated with the given context.

Implementation

static AppBarActionButtonThemeData? of(BuildContext context) {
  final result = context.dependOnInheritedWidgetOfExactType<AppBarActionButtonTheme>();
  return result?.data;
}