V2TimFriendGroup.fromJson constructor

V2TimFriendGroup.fromJson(
  1. Map json
)

Implementation

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