copyWith method

SetAccentColor copyWith({
  1. int? accentColorId,
  2. int? backgroundCustomEmojiId,
})

Implementation

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