Includes constructor

const Includes({
  1. @JsonKey(name: 'Asset') List<Asset>? assetList,
})

Includes is where the assets and it's linked entries are stored. It's a part of the ContentfulDeliveryDataModel and is used to retrieve the assets and linked entries from the Entrys.

Implementation

const factory Includes({
  // ignore: invalid_annotation_target
  @JsonKey(name: 'Asset') List<Asset>? assetList,
}) = _Includes;