copyWith method

SetProfileAccentColor copyWith({
  1. int? profileAccentColorId,
  2. int? profileBackgroundCustomEmojiId,
})

Implementation

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