V2TimFriendGroup.fromJson constructor

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

Implementation

V2TimFriendGroup.fromJson(Map<String, dynamic> json) {
  name = json['name'];
  friendCount = json['friendCount'];
  friendIDList = json['friendIDList'].cast<String>();
}