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