maybeOf static method

FirebaseUIActions? maybeOf(
  1. BuildContext context
)

Looks up an instance of FirebaseUIActions in the widget tree.

Implementation

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