Gifts constructor

const Gifts({
  1. @JsonKey.new(name: 'gifts') required List<Gift> gifts,
})

Creates a Gifts object.

Implementation

const factory Gifts({
  /// The list of gifts.
  @JsonKey(name: 'gifts') required List<Gift> gifts,
}) = _Gifts;