toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attributeLanguage = this.attributeLanguage;
final contentType = this.contentType;
final fetchSchedule = this.fetchSchedule;
final fileName = this.fileName;
final format = this.format;
final id = this.id;
final kind = this.kind;
final name = this.name;
final targets = this.targets;
return {
'attributeLanguage': ?attributeLanguage,
'contentType': ?contentType,
'fetchSchedule': ?fetchSchedule,
'fileName': ?fileName,
'format': ?format,
'id': ?id,
'kind': ?kind,
'name': ?name,
'targets': ?targets,
};
}