copyWith method

SetChatProfileAccentColor copyWith({
  1. int? chatId,
  2. int? profileAccentColorId,
  3. int? profileBackgroundCustomEmojiId,
})

Implementation

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