restore method

Future<void> restore({
  1. required int blockIndex,
})

Implementation

Future<void> restore({required int blockIndex}) {
  return hostApi.mifareClassicRestore(
    handle: _handle,
    blockIndex: blockIndex,
  );
}