FlowSchemaList.fromJson constructor
Creates a FlowSchemaList from JSON data.
Implementation
factory FlowSchemaList.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<FlowSchema> tempItems = List<dynamic>.from(tempItemsJson)
.map(
(e) => FlowSchema.fromJson(
Map<String, dynamic>.from(e),
),
)
.toList();
final String? tempKind = tempKindJson;
final ListMeta? tempMetadata =
tempMetadataJson != null ? ListMeta.fromJson(tempMetadataJson) : null;
return FlowSchemaList(
apiVersion: tempApiVersion,
items: tempItems,
kind: tempKind,
metadata: tempMetadata,
);
}