copyWith method

UpdateAvailableMessageEffects copyWith({
  1. List<int>? reactionEffectIds,
  2. List<int>? stickerEffectIds,
})

Implementation

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