AppStateEventNotifier class

Emits process-level foreground/background transitions.

Unlike Flutter's WidgetsBindingObserver, this notifier is backed by Android's ProcessLifecycleOwner. This distinction matters for app open ads: showing a fullscreen ad must not be mistaken for the app being backgrounded, which would otherwise cause an app open ad loop.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

appStateStream Stream<AppState>
Broadcasts AppState transitions.
no setter

Static Methods

startListening() Future<void>
Starts observing process lifecycle events on the native side.
stopListening() Future<void>
Stops observing process lifecycle events on the native side.