put method
Sets a property with the given key and value.
key
- The property key.
value
- The property value (can be any type).
Implementation
void put(String key, dynamic value) {
__map[key] = value;
}
Sets a property with the given key and value.
key
- The property key.
value
- The property value (can be any type).
void put(String key, dynamic value) {
__map[key] = value;
}