toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bucket = this.bucket;
final mountOptions = this.mountOptions;
final readOnly = this.readOnly;
return {
'bucket': ?bucket,
'mountOptions': ?mountOptions,
'readOnly': ?readOnly,
};
}