sendMiFareIso7816Command method
Sends an ISO 7816 command APDU assembled from its fields.
Implementation
Future<Iso7816ResponseApdu> sendMiFareIso7816Command({
required int instructionClass,
required int instructionCode,
required int p1Parameter,
required int p2Parameter,
required Uint8List data,
required int expectedResponseLength,
}) async {
final response = await iosApi.mifareSendIso7816Command(
_handle,
instructionClass,
instructionCode,
p1Parameter,
p2Parameter,
data,
expectedResponseLength,
);
return _toApdu(response);
}