get method
Implementation
String get(String name, {String? fallback}) {
final value = maybeGet(name, fallback: fallback);
if (value == null) {
throw AssertionError(
'$name variable not found. A non-null fallback is required for missing entries');
}
return value;
}