toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'members_ids'] = this.membersIds;
if (this.video != null) {
json[r'video'] = this.video;
} else {
json[r'video'] = null;
}
return json;
}