copyWith method

  1. @override
ChatEventForumTopicDeleted copyWith({
  1. ForumTopicInfo? topicInfo,
})
override

Implementation

@override
ChatEventForumTopicDeleted copyWith({
  ForumTopicInfo? topicInfo,
}) =>
    ChatEventForumTopicDeleted(
      topicInfo: topicInfo ?? this.topicInfo,
    );