toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final formUrl = this.formUrl;
final responseUrl = this.responseUrl;
final thumbnailUrl = this.thumbnailUrl;
final title = this.title;
return {
'formUrl': ?formUrl,
'responseUrl': ?responseUrl,
'thumbnailUrl': ?thumbnailUrl,
'title': ?title,
};
}