copyWith method

GiftCollections copyWith({
  1. List<GiftCollection>? collections,
})

Implementation

GiftCollections copyWith({List<GiftCollection>? collections}) =>
    GiftCollections(collections: collections ?? this.collections);