hasService method

bool hasService(
  1. String enumKey
)

Check if enum key exists for services

Implementation

bool hasService(String enumKey) {
  return _servicesEnum.containsKey(enumKey);
}