freeCommand method

Future<void> freeCommand(
  1. String command
)

send a freely writeable command to mpv
the required trailing \n will be added

Implementation

Future<void> freeCommand(String command) {
  return socket.freeCommand(command);
}