SimpleProperties.fromJson constructor
SimpleProperties.fromJson(
- dynamic properties
Implementation
factory SimpleProperties.fromJson(dynamic properties) {
return SimpleProperties(
key: properties['key'],
value: properties['value']);
}