copyWith method
MessageEffect
copyWith({
- int? id,
- Sticker? staticIcon,
- String? emoji,
- bool? isPremium,
- MessageEffectType? type,
Implementation
MessageEffect copyWith({
int? id,
Sticker? staticIcon,
String? emoji,
bool? isPremium,
MessageEffectType? type,
}) => MessageEffect(
id: id ?? this.id,
staticIcon: staticIcon ?? this.staticIcon,
emoji: emoji ?? this.emoji,
isPremium: isPremium ?? this.isPremium,
type: type ?? this.type,
);