toJson method

Map<String, dynamic> toJson()

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;
}