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