of static method

ThemeData of(
  1. BuildContext context
)

Implementation

static ThemeData of(BuildContext context) {
  final theme = context.dependOnInheritedWidgetOfExactType<Theme>();
  assert(theme != null, 'No Theme found in context');
  return theme!.data;
}