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