reportConnectResult method
Reports the successful result of a |SCardConnect| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#ga4e515829752e0a8dbc4d630696a8d6a5 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardconnecta
Implementation
Future<void> reportConnectResult(
String requestId,
int handle, {
Protocol? activeProtocol,
}) async {
await _client.send('SmartCardEmulation.reportConnectResult', {
'requestId': requestId,
'handle': handle,
if (activeProtocol != null) 'activeProtocol': activeProtocol,
});
}