authenticateSectorWithKeyB method

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

Implementation

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