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