copyWith method
Implementation
SetChatAccentColor copyWith({
int? chatId,
int? accentColorId,
int? backgroundCustomEmojiId,
}) => SetChatAccentColor(
chatId: chatId ?? this.chatId,
accentColorId: accentColorId ?? this.accentColorId,
backgroundCustomEmojiId:
backgroundCustomEmojiId ?? this.backgroundCustomEmojiId,
);