getApiKey method

String getApiKey()

Implementation

String getApiKey() {
  if (_apiKey == '') {
    throw ArgumentError.notNull('apiKey missing, please initialize.');
  }
  return _apiKey;
}