copyWith method
EmojiReaction
copyWith(
{ - String? emoji,
- String? title,
- bool? isActive,
- Sticker? staticIcon,
- Sticker? appearAnimation,
- Sticker? selectAnimation,
- Sticker? activateAnimation,
- Sticker? effectAnimation,
- Sticker? aroundAnimation,
- Sticker? centerAnimation,
- int? clientId,
})
Implementation
EmojiReaction copyWith({
String? emoji,
String? title,
bool? isActive,
Sticker? staticIcon,
Sticker? appearAnimation,
Sticker? selectAnimation,
Sticker? activateAnimation,
Sticker? effectAnimation,
Sticker? aroundAnimation,
Sticker? centerAnimation,
dynamic extra,
int? clientId,
}) =>
EmojiReaction(
emoji: emoji ?? this.emoji,
title: title ?? this.title,
isActive: isActive ?? this.isActive,
staticIcon: staticIcon ?? this.staticIcon,
appearAnimation: appearAnimation ?? this.appearAnimation,
selectAnimation: selectAnimation ?? this.selectAnimation,
activateAnimation: activateAnimation ?? this.activateAnimation,
effectAnimation: effectAnimation ?? this.effectAnimation,
aroundAnimation: aroundAnimation ?? this.aroundAnimation,
centerAnimation: centerAnimation ?? this.centerAnimation,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);