tryString method
Returns a value at key
as String
or null if missing.
null
is returned if an underlying value is unavailable or cannot be
converted to String.
Implementation
@override
String? tryString(K key) {
try {
return getString(key);
} on Exception {
return null;
}
}