runCommand method

Future<PrivCommandResult> runCommand(
  1. PrivCommand command, {
  2. int? timeoutMillis,
  3. int? maxBytesPerStream,
})

Starts command and drains both streams to completion.

Leaves timeoutMillis unset to use the 30 second default, or pass noCommandTimeout to disable the deadline.

Implementation

Future<PrivCommandResult> runCommand(
  PrivCommand command, {
  int? timeoutMillis,
  int? maxBytesPerStream,
}) {
  throw UnimplementedError('runCommand() has not been implemented.');
}