maybeOf static method

FastIconHelper? maybeOf(
  1. BuildContext context
)

Attempts to retrieve the FastIconHelper from the provided context. Returns null if not found.

Implementation

static FastIconHelper? maybeOf(BuildContext context) {
  return context.dependOnInheritedWidgetOfExactType<FastIconHelper>();
}