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