toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final content = this.content;
final height = this.height;
final mimeType = this.mimeType;
final width = this.width;
return {
'content': ?content,
'height': ?height,
'mimeType': ?mimeType,
'width': ?width,
};
}