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