lookupService method

Future<String> lookupService (
  1. String service
)
inherited

Gets the URI of the master

service is the fully qualified name of the service

Return service URL (address and port). Fails if there is no provider.

Implementation

Future<String> lookupService(
  String service,
) async =>
    await _call('lookupService', [nodeName, service]) as String;