toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final data = Map<String, dynamic>();
  data['groupID'] = this.groupID;
  data['groupName'] = this.groupName;
  data['notification'] = this.notification;
  data['introduction'] = this.introduction;
  data['faceURL'] = this.faceURL;
  data['ownerUserID'] = this.ownerUserID;
  data['createTime'] = this.createTime;
  data['memberCount'] = this.memberCount;
  data['status'] = this.status;
  data['creatorUserID'] = this.creatorUserID;
  data['groupType'] = this.groupType;
  data['ex'] = this.ex;
  data['needVerification'] = this.needVerification;
  data['lookMemberInfo'] = this.lookMemberInfo;
  data['applyMemberFriend'] = this.applyMemberFriend;
  data['notificationUpdateTime'] = this.notificationUpdateTime;
  data['notificationUserID'] = this.notificationUserID;
  return data;
}