interactionStream property
Stream of pairing and transaction interaction prompts emitted by native SDK flows.
Implementation
@override
Stream<DeviceInteractionRequest> get interactionStream {
_interactionStream ??= parseInteractionStream(
interactionEventChannel.receiveBroadcastStream(),
);
return _interactionStream!;
}