Retrieve a value from this map
String? get(String key, [String? defaultValue]) { if (!containsKey(key)) { return defaultValue; } return this[key]; }