copyWith method

GetArchivedStickerSets copyWith({
  1. bool? isMasks,
  2. int? offsetStickerSetId,
  3. int? limit,
})

Implementation

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