sendMiFareCommand method

Future<Uint8List> sendMiFareCommand({
  1. required Uint8List commandPacket,
})

Implementation

Future<Uint8List> sendMiFareCommand({required Uint8List commandPacket}) {
  return hostApi.miFareSendMiFareCommand(
    handle: _handle,
    commandPacket: commandPacket,
  );
}