getRegistryApi method

RegistryApi getRegistryApi()

Implementation

RegistryApi getRegistryApi() {
  if (registryApi == null) {
    throw "Exception: no RegistryApi registered. You should include an eliud package which implements the RegistryApi and registers it onto Apis.getApis().registerRegistryApi(...)";
  }
  return registryApi!;
}