Returns the value for key parsed as a bool.
key
'true', '1', 'yes' (case-insensitive) → true; otherwise false.
'true'
'1'
'yes'
true
false
static bool getBool(String key) => EnvManager.instance.getBool(key);