copyWith method

SetChatAccentColor copyWith({
  1. int? chatId,
  2. int? accentColorId,
  3. int? backgroundCustomEmojiId,
})

Implementation

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