input method
Returns the input value for key as-is (no implicit int coercion).
Implementation
dynamic input([String? key, dynamic defaultVal]) {
if (key == null) return _all;
final value = _all[key];
if (value != null) return value;
return defaultVal;
}