toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedClients = this.allowedClients;
final id = this.id;
final labels = this.labels;
final name = this.name;
final nfsShareId = this.nfsShareId;
final pod = this.pod;
final requestedSizeGib = this.requestedSizeGib;
final state = this.state;
final storageType = this.storageType;
final volume = this.volume;
return {
'allowedClients': ?allowedClients,
'id': ?id,
'labels': ?labels,
'name': ?name,
'nfsShareId': ?nfsShareId,
'pod': ?pod,
'requestedSizeGib': ?requestedSizeGib,
'state': ?state,
'storageType': ?storageType,
'volume': ?volume,
};
}