runCommand method
Future<PrivCommandResult>
runCommand(
- PrivCommand command, {
- int? timeoutMillis,
- 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.');
}