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['groupFaceURL'] = this.groupFaceURL;
  data['createTime'] = this.createTime;
  data['status'] = this.status;
  data['creatorUserID'] = this.creatorUserID;
  data['groupType'] = this.groupType;
  data['ownerUserID'] = this.ownerUserID;
  data['memberCount'] = this.memberCount;
  data['userID'] = this.userID;
  data['nickname'] = this.nickname;
  data['userFaceURL'] = this.userFaceURL;
  data['gender'] = this.gender;
  data['handleResult'] = this.handleResult;
  data['reqMsg'] = this.reqMsg;
  data['handledMsg'] = this.handledMsg;
  data['reqTime'] = this.reqTime;
  data['handleUserID'] = this.handleUserID;
  data['handledTime'] = this.handledTime;
  data['ex'] = this.ex;
  data['inviterUserID'] = this.inviterUserID;
  data['joinSource'] = this.joinSource;
  return data;
}