onEndTransactionRequested property
Stream<EndTransactionRequestedEvent>
get
onEndTransactionRequested
Fired when |SCardEndTransaction| is called.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gae8742473b404363e5c587f570d7e2f3b Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardendtransaction
Implementation
Stream<EndTransactionRequestedEvent> get onEndTransactionRequested => _client
.onEvent
.where(
(event) => event.name == 'SmartCardEmulation.endTransactionRequested',
)
.map((event) => EndTransactionRequestedEvent.fromJson(event.parameters));