toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (annotationColors != null)
'annotationColors': annotationColors!
.map((key, item) => core.MapEntry(key, item.toJson())),
if (imageBytes != null) 'imageBytes': imageBytes!,
if (mimeType != null) 'mimeType': mimeType!,
};