GroupInfo.fromJson constructor

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

Implementation

GroupInfo.fromJson(Map<String, dynamic> json) : groupID = json['groupID'] {
  /*groupID = json['groupID'];*/
  groupName = json['groupName'];
  notification = json['notification'];
  introduction = json['introduction'];
  faceURL = json['faceURL'];
  ownerUserID = json['ownerUserID'];
  createTime = json['createTime'];
  memberCount = json['memberCount'];
  status = json['status'];
  creatorUserID = json['creatorUserID'];
  groupType = json['groupType'];
  ex = json['ex'];
  needVerification = json['needVerification'];
  lookMemberInfo = json['lookMemberInfo'];
  applyMemberFriend = json['applyMemberFriend'];
  notificationUpdateTime = json['notificationUpdateTime'];
  notificationUserID = json['notificationUserID'];
}