reportEstablishContextResult method
Reports the successful result of a |SCardEstablishContext| call.
This maps to: PC/SC Lite: https://pcsclite.apdu.fr/api/group__API.html#gaa1b8970169fd4883a6dc4a8f43f19b67 Microsoft: https://learn.microsoft.com/en-us/windows/win32/api/winscard/nf-winscard-scardestablishcontext
Implementation
Future<void> reportEstablishContextResult(
String requestId,
int contextId,
) async {
await _client.send('SmartCardEmulation.reportEstablishContextResult', {
'requestId': requestId,
'contextId': contextId,
});
}