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