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