has static method

bool has(
  1. String key
)

Checks whether key exists in the loaded environment map.

Convenient alias for contains.

if (BloomEnv.has('SENTRY_DSN')) {
  initSentry();
}

Implementation

static bool has(String key) => contains(key);