of static method

AppBarThemeData of(
  1. BuildContext context
)

Returns the closest AppBarThemeData instance given the build context.

Implementation

static AppBarThemeData of(BuildContext context) {
  final AppBarTheme? appBarTheme = context.dependOnInheritedWidgetOfExactType<AppBarTheme>();
  return appBarTheme?.data ?? Theme.of(context).appBarTheme;
}