of static method

TabBarThemeData of(
  1. BuildContext context
)

Returns the closest TabBarTheme instance given the build context.

Implementation

static TabBarThemeData of(BuildContext context) {
  final TabBarTheme? tabBarTheme = context.dependOnInheritedWidgetOfExactType<TabBarTheme>();
  return tabBarTheme?.data ?? Theme.of(context).tabBarTheme;
}