of static method

Get the nearest EditorThemeData from the widget tree.

Throws if no EditorTheme is found.

Implementation

static EditorThemeData of(BuildContext context) {
  final data = maybeOf(context);
  assert(data != null, 'No EditorTheme found in context');
  return data!;
}