V2TimGroupAttributeChanged.fromJson constructor
V2TimGroupAttributeChanged.fromJson(
- Map json
Implementation
V2TimGroupAttributeChanged.fromJson(Map json) {
json = Utils.formatJson(json);
groupID = json['groupID'];
groupAttributeMap = json['groupAttributeMap'] == null
? <String, String>{}
: Map<String, String>.from(json['groupAttributeMap']);
}