toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final country = this.country;
final customUrl = this.customUrl;
final defaultLanguage = this.defaultLanguage;
final description = this.description;
final localized = this.localized;
final publishedAt = this.publishedAt;
final thumbnails = this.thumbnails;
final title = this.title;
return {
'country': ?country,
'customUrl': ?customUrl,
'defaultLanguage': ?defaultLanguage,
'description': ?description,
'localized': ?localized,
'publishedAt': ?publishedAt?.toUtc().toIso8601String(),
'thumbnails': ?thumbnails,
'title': ?title,
};
}