copyWith method
Implementation
SetChatProfileAccentColor copyWith({
int? chatId,
int? profileAccentColorId,
int? profileBackgroundCustomEmojiId,
}) => SetChatProfileAccentColor(
chatId: chatId ?? this.chatId,
profileAccentColorId: profileAccentColorId ?? this.profileAccentColorId,
profileBackgroundCustomEmojiId:
profileBackgroundCustomEmojiId ?? this.profileBackgroundCustomEmojiId,
);