hasApiKey method

bool hasApiKey(
  1. String enumKey
)

Check if enum key exists for API keys

Implementation

bool hasApiKey(String enumKey) {
  return _apiKeysEnum.containsKey(enumKey);
}