copyWith method

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

Implementation

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