of static method

CodeThemeData? of(
  1. BuildContext context
)

Implementation

static CodeThemeData? of(BuildContext context) {
  final widget = context.dependOnInheritedWidgetOfExactType<CodeTheme>();
  return widget?.data;
}