get method
Returns the entry with the given key as an object.
@param key a String key @return an Object, or null
Implementation
dynamic get(String key) {
// unparcel();
return _map[key];
}
Returns the entry with the given key as an object.
@param key a String key @return an Object, or null
dynamic get(String key) {
// unparcel();
return _map[key];
}