copyWith method
Implementation
AnimatedEmoji copyWith({
Sticker? sticker,
int? stickerWidth,
int? stickerHeight,
int? fitzpatrickType,
File? sound,
}) => AnimatedEmoji(
sticker: sticker ?? this.sticker,
stickerWidth: stickerWidth ?? this.stickerWidth,
stickerHeight: stickerHeight ?? this.stickerHeight,
fitzpatrickType: fitzpatrickType ?? this.fitzpatrickType,
sound: sound ?? this.sound,
);