pendingActionsUpdates property

Stream<List<PendingAction>> get pendingActionsUpdates

Reactive stream of pending-action list snapshots. Emits whenever the SDK's pendingActions StateFlow mutates on Android. iOS emits [] once on subscribe and never again.

Implementation

Stream<List<PendingAction>> get pendingActionsUpdates {
  return _platform.pendingActionsUpdates.map(_decodePendingActions);
}