play static method

Future<HyperDeckResponse> play({
  1. int? speed,
  2. bool? loop,
  3. bool? singleClip,
  4. int? clipId,
})

Implementation

static Future<HyperDeckResponse> play(
        {int? speed, bool? loop, bool? singleClip, int? clipId}) =>
    command('play', {
      'speed': speed,
      'loop': loop,
      'single clip': singleClip,
      'clip id': clipId
    });