of static method

SpinnerNotifier? of(
  1. BuildContext context
)

Returns the SpinnerNotifier from the closest ancestor, or null.

Implementation

static SpinnerNotifier? of(BuildContext context) {
  return _SpinnerInherited.of(context);
}