getBool static method

bool getBool(
  1. String key
)

Returns the value for key parsed as a bool.

'true', '1', 'yes' (case-insensitive) → true; otherwise false.

Implementation

static bool getBool(String key) => EnvManager.instance.getBool(key);