copyWith method
Implementation
GetStickerOutline copyWith({
int? stickerFileId,
bool? forAnimatedEmoji,
bool? forClickedAnimatedEmojiMessage,
}) => GetStickerOutline(
stickerFileId: stickerFileId ?? this.stickerFileId,
forAnimatedEmoji: forAnimatedEmoji ?? this.forAnimatedEmoji,
forClickedAnimatedEmojiMessage:
forClickedAnimatedEmojiMessage ?? this.forClickedAnimatedEmojiMessage,
);