PodTemplateSpec.fromJson constructor
Creates a PodTemplateSpec from JSON data.
Implementation
factory PodTemplateSpec.fromJson(Map<String, dynamic> json) {
final tempMetadataJson = json['metadata'];
final tempSpecJson = json['spec'];
final ObjectMeta? tempMetadata =
tempMetadataJson != null ? ObjectMeta.fromJson(tempMetadataJson) : null;
final PodSpec? tempSpec =
tempSpecJson != null ? PodSpec.fromJson(tempSpecJson) : null;
return PodTemplateSpec(
metadata: tempMetadata,
spec: tempSpec,
);
}