toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  if (this.group != null) {
    data['group'] = this.group!.toJson();
  }
  if (this.opUser != null) {
    data['opUser'] = this.opUser!.toJson();
  }
  if (this.kickedUserList != null) {
    data['kickedUserList'] =
        this.kickedUserList!.map((v) => v.toJson()).toList();
  }
  return data;
}