of static method

dynamic of(
  1. BuildContext context
)

Implementation

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