toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final cacheControl = this.cacheControl;
final contentDisposition = this.contentDisposition;
final contentEncoding = this.contentEncoding;
final contentLanguage = this.contentLanguage;
final contentType = this.contentType;
final customMetadata = this.customMetadata;
final customTime = this.customTime;
final objectRetention = this.objectRetention;
return {
'cacheControl': ?cacheControl,
'contentDisposition': ?contentDisposition,
'contentEncoding': ?contentEncoding,
'contentLanguage': ?contentLanguage,
'contentType': ?contentType,
'customMetadata': ?customMetadata,
'customTime': ?customTime,
'objectRetention': ?objectRetention,
};
}