sendFeliCaCommand method

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

DOC:

Implementation

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