IngressClass.fromJson constructor
Creates a IngressClass from JSON data.
Implementation
factory IngressClass.fromJson(Map<String, dynamic> json) {
final tempApiVersionJson = json['apiVersion'];
final tempKindJson = json['kind'];
final tempMetadataJson = json['metadata'];
final tempSpecJson = json['spec'];
final String? tempApiVersion = tempApiVersionJson;
final String? tempKind = tempKindJson;
final ObjectMeta? tempMetadata =
tempMetadataJson != null ? ObjectMeta.fromJson(tempMetadataJson) : null;
final IngressClassSpec? tempSpec =
tempSpecJson != null ? IngressClassSpec.fromJson(tempSpecJson) : null;
return IngressClass(
apiVersion: tempApiVersion,
kind: tempKind,
metadata: tempMetadata,
spec: tempSpec,
);
}