exists method

bool exists(
  1. String key
)

@param key The feature key returns true if the feature key exists, otherwise false

Implementation

bool exists(String key) {
  return feature(key).exists;
}