of static method

IdsScope of(
  1. BuildContext context
)

Implementation

static IdsScope of(BuildContext context) {
  final scope = context.dependOnInheritedWidgetOfExactType<IdsScope>();
  assert(scope != null, 'IdsScope not found — wrap your app with ThemeProvider');
  return scope!;
}