copyWith method

  1. @override
ChatEventForumTopicEdited copyWith({
  1. ForumTopicInfo? oldTopicInfo,
  2. ForumTopicInfo? newTopicInfo,
})
override

Implementation

@override
ChatEventForumTopicEdited copyWith({
  ForumTopicInfo? oldTopicInfo,
  ForumTopicInfo? newTopicInfo,
}) =>
    ChatEventForumTopicEdited(
      oldTopicInfo: oldTopicInfo ?? this.oldTopicInfo,
      newTopicInfo: newTopicInfo ?? this.newTopicInfo,
    );