containsKey static method

bool containsKey(
  1. String key
)

Checks if an environment variable exists.

Implementation

static bool containsKey(String key) {
  throw UnimplementedError(
    'NyEnv.containsKey() called but no Env class has been registered.',
  );
}