getApiUrl method

String getApiUrl()

Implementation

String getApiUrl() {
  if (_apiUrl == '') {
    throw ArgumentError.notNull('baseUrl missing, please initialize.');
  }
  return _apiUrl;
}