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