callMethod method
Call an arbitrary service protocol method. This allows clients to call methods not explicitly exposed by this library.
Implementation
Future<Response> callMethod(String method,
{String? isolateId, Map<String, dynamic>? args}) {
return callServiceExtension(method, isolateId: isolateId, args: args);
}