getCoreApiBaseUrl method

String? getCoreApiBaseUrl()

Implementation

String? getCoreApiBaseUrl() {
  return _availableCoreApiEnvironments.firstWhere(
    (envItem) => envItem['env'] == _currentEnvironment.name,
  )['url'];
}