of static method

dynamic of(
  1. BuildContext context
)

Implementation

static of(BuildContext context) {
  _ReactionInheritedProvider? p = context.dependOnInheritedWidgetOfExactType(
      aspect: _ReactionInheritedProvider);
  return p!.data;
}