reportGetStatusChangeResult method
Reports the successful result of a |SCardGetStatusChange| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga33247d5d1257d59e55647c3bb717db24 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardgetstatuschangea
Implementation
Future<void> reportGetStatusChangeResult(
String requestId,
List<ReaderStateOut> readerStates,
) async {
await _client.send('SmartCardEmulation.reportGetStatusChangeResult', {
'requestId': requestId,
'readerStates': [...readerStates],
});
}