command method

Future<HyperDeckResponse> command(
  1. String name, [
  2. Map<String, Object?> parameters = const {}
])

Sends any single-line protocol command and waits for its response.

Implementation

Future<HyperDeckResponse> command(String name,
        [Map<String, Object?> parameters = const {}]) =>
    send(HyperDeckCommand.single(name, parameters));