copyWith method

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

Implementation

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