getRouterApi method

RouterApi getRouterApi()

Implementation

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