dispatchInvoke method
Dispatches an invocation through the registry or external invocation handler.
Implementation
Future<Map<String, Object?>> dispatchInvoke(
String command,
Map<String, Object?> arguments,
String requestId, {
String? ownerToken,
Duration? deadline,
}) => _invokerHandler.dispatchInvoke(
command,
arguments,
requestId,
ownerToken: ownerToken,
deadline: deadline,
);