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