maybeOf static method

ReloadController? maybeOf(
  1. BuildContext context
)

Returns the nearest controller, if any.

Implementation

static ReloadController? maybeOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<ReloadScope>()?.controller;
}