authenticateSectorWithKeyA method
Implementation
Future<bool> authenticateSectorWithKeyA({
required int sectorIndex,
required Uint8List key,
}) {
return hostApi.mifareClassicAuthenticateSectorWithKeyA(
handle: _handle,
sectorIndex: sectorIndex,
key: key,
);
}