copyWith method

MessageForumTopicEdited copyWith({
  1. String? name,
  2. bool? editIconCustomEmojiId,
  3. int? iconCustomEmojiId,
})

Implementation

MessageForumTopicEdited copyWith({
  String? name,
  bool? editIconCustomEmojiId,
  int? iconCustomEmojiId,
}) => MessageForumTopicEdited(
  name: name ?? this.name,
  editIconCustomEmojiId: editIconCustomEmojiId ?? this.editIconCustomEmojiId,
  iconCustomEmojiId: iconCustomEmojiId ?? this.iconCustomEmojiId,
);