copyWith method

ForumTopicIcon copyWith({
  1. int? color,
  2. int? customEmojiId,
})

Implementation

ForumTopicIcon copyWith({int? color, int? customEmojiId}) => ForumTopicIcon(
  color: color ?? this.color,
  customEmojiId: customEmojiId ?? this.customEmojiId,
);