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