toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final gcpService = this.gcpService;
final id = this.id;
final lunRanges = this.lunRanges;
final machineIds = this.machineIds;
final name = this.name;
final nfsExports = this.nfsExports;
final performanceTier = this.performanceTier;
final protocol = this.protocol;
final sizeGb = this.sizeGb;
final snapshotsEnabled = this.snapshotsEnabled;
final type = this.type;
final userNote = this.userNote;
return {
'gcpService': ?gcpService,
'id': ?id,
'lunRanges': ?lunRanges,
'machineIds': ?machineIds,
'name': ?name,
'nfsExports': ?nfsExports,
'performanceTier': ?performanceTier,
'protocol': ?protocol,
'sizeGb': ?sizeGb,
'snapshotsEnabled': ?snapshotsEnabled,
'type': ?type,
'userNote': ?userNote,
};
}