copyWith method
Implementation
UpdateAvailableMessageEffects copyWith({
List<int>? reactionEffectIds,
List<int>? stickerEffectIds,
}) => UpdateAvailableMessageEffects(
reactionEffectIds: reactionEffectIds ?? this.reactionEffectIds,
stickerEffectIds: stickerEffectIds ?? this.stickerEffectIds,
);