copyWith method

ReorderGiftCollections copyWith({
  1. MessageSender? ownerId,
  2. List<int>? collectionIds,
})

Implementation

ReorderGiftCollections copyWith({
  MessageSender? ownerId,
  List<int>? collectionIds,
}) => ReorderGiftCollections(
  ownerId: ownerId ?? this.ownerId,
  collectionIds: collectionIds ?? this.collectionIds,
);