of static method

EasyLayoutScope? of(
  1. BuildContext context
)

Implementation

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