command<T> method

Future<T> command<T>(
  1. String command,
  2. List args
)

send a command with arguments to mpv

Implementation

Future<T> command<T>(String command, List args) {
  return socket.command<T>(command, args: args);
}