of static method

LoaderController? of(
  1. BuildContext? context
)

Retrieves the LoaderController in the closest ancestor element.

Implementation

static LoaderController? of(BuildContext? context) => context
    ?.dependOnInheritedWidgetOfExactType<_LoaderControllerScope>()
    ?.controller;