copyWith method
Implementation
ChatEventProfileAccentColorChanged copyWith({
int? oldProfileAccentColorId,
int? oldProfileBackgroundCustomEmojiId,
int? newProfileAccentColorId,
int? newProfileBackgroundCustomEmojiId,
}) => ChatEventProfileAccentColorChanged(
oldProfileAccentColorId:
oldProfileAccentColorId ?? this.oldProfileAccentColorId,
oldProfileBackgroundCustomEmojiId:
oldProfileBackgroundCustomEmojiId ??
this.oldProfileBackgroundCustomEmojiId,
newProfileAccentColorId:
newProfileAccentColorId ?? this.newProfileAccentColorId,
newProfileBackgroundCustomEmojiId:
newProfileBackgroundCustomEmojiId ??
this.newProfileBackgroundCustomEmojiId,
);