getCoreApi method

CoreApi getCoreApi()

Implementation

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