SecretList.fromJson constructor
Creates a SecretList from JSON data.
Implementation
factory SecretList.fromJson(Map<String, dynamic> json) {
final tempApiVersionJson = json['apiVersion'];
final tempItemsJson = json['items'];
final tempKindJson = json['kind'];
final tempMetadataJson = json['metadata'];
final String? tempApiVersion = tempApiVersionJson;
final List<Secret> tempItems = List<dynamic>.from(tempItemsJson)
.map(
(e) => Secret.fromJson(
Map<String, dynamic>.from(e),
),
)
.toList();
final String? tempKind = tempKindJson;
final ListMeta? tempMetadata =
tempMetadataJson != null ? ListMeta.fromJson(tempMetadataJson) : null;
return SecretList(
apiVersion: tempApiVersion,
items: tempItems,
kind: tempKind,
metadata: tempMetadata,
);
}