of static method

DbLensTheme of(
  1. BuildContext context
)

Implementation

static DbLensTheme of(BuildContext context) {
  final scope =
      context.dependOnInheritedWidgetOfExactType<DbLensThemeScope>();
  return scope?.theme ?? DbLensTheme();
}