of static method

BottomAppBarThemeData of(
  1. BuildContext context
)

Returns the closest BottomAppBarThemeData instance given the build context.

Implementation

static BottomAppBarThemeData of(BuildContext context) {
  final BottomAppBarTheme? bottomAppBarTheme = context
      .dependOnInheritedWidgetOfExactType<BottomAppBarTheme>();
  return bottomAppBarTheme?.data ?? Theme.of(context).bottomAppBarTheme;
}