V2TimGroupAttributeChanged.fromJson constructor

V2TimGroupAttributeChanged.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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