toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attachmentDataRef = this.attachmentDataRef;
final contentName = this.contentName;
final contentType = this.contentType;
final downloadUri = this.downloadUri;
final driveDataRef = this.driveDataRef;
final name = this.name;
final source = this.source;
final thumbnailUri = this.thumbnailUri;
return {
'attachmentDataRef': ?attachmentDataRef,
'contentName': ?contentName,
'contentType': ?contentType,
'downloadUri': ?downloadUri,
'driveDataRef': ?driveDataRef,
'name': ?name,
'source': ?source,
'thumbnailUri': ?thumbnailUri,
};
}