toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'created_at'] = this.createdAt.toUtc().toIso8601String();
json[r'custom'] = this.custom;
json[r'images'] = this.images;
json[r'texts'] = this.texts;
json[r'videos'] = this.videos;
return json;
}