addQueue method

  1. @override
Future<UrpResponse> addQueue(
  1. Uint8List command,
  2. UrpDeviceIdentifier target,
  3. UrpDeviceIdentifier origin, {
  4. Duration? timeout,
})

Adds a command to the queue.

Implementation

@override
Future<UrpResponse> addQueue(
  Uint8List command,
  UrpDeviceIdentifier target,
  UrpDeviceIdentifier origin, {
  Duration? timeout,
}) {
  return super.addQueue(command, target, origin, timeout: timeout);
}