authenticateSectorWithKeyA method

Future<bool> authenticateSectorWithKeyA({
  1. required int sectorIndex,
  2. required Uint8List key,
})

Implementation

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