toJson method
Converts a PersistentVolumeClaimTemplate instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempMetadata = metadata;
final tempSpec = spec;
if (tempMetadata != null) {
jsonData['metadata'] = tempMetadata.toJson();
}
jsonData['spec'] = tempSpec.toJson();
return jsonData;
}