stream method
Stream
stream(
- int command, {
- List args = const [],
- CancelationToken? token,
- bool inspectRequest = false,
- bool inspectResponse = false,
inherited
Sends a streaming command to the Worker.
Implementation
@override
Stream<dynamic> stream(int command,
{List args = const [],
CancelationToken? token,
bool inspectRequest = false,
bool inspectResponse = false}) =>
channel.sendStreamingRequest(command, args,
token: token?.wrap(),
inspectRequest: inspectRequest,
inspectResponse: inspectResponse);