getProperty method
Searches for a specific property. Returns null if it does not exist.
Implementation
dynamic getProperty(String key) {
Map<String, dynamic> p = value;
return p[key];
}
Searches for a specific property. Returns null if it does not exist.
dynamic getProperty(String key) {
Map<String, dynamic> p = value;
return p[key];
}