copyWith method

GetArchivedStickerSets copyWith({
  1. StickerType? stickerType,
  2. int? offsetStickerSetId,
  3. int? limit,
})

Implementation

GetArchivedStickerSets copyWith({
  StickerType? stickerType,
  int? offsetStickerSetId,
  int? limit,
}) => GetArchivedStickerSets(
  stickerType: stickerType ?? this.stickerType,
  offsetStickerSetId: offsetStickerSetId ?? this.offsetStickerSetId,
  limit: limit ?? this.limit,
);