readBlock method

Future<Uint8List> readBlock({
  1. required int blockIndex,
})

Implementation

Future<Uint8List> readBlock({required int blockIndex}) {
  return hostApi.mifareClassicReadBlock(
    handle: _handle,
    blockIndex: blockIndex,
  );
}