copyWith method
Implementation
@override
ChatEventDescriptionChanged copyWith({
String? oldDescription,
String? newDescription,
}) => ChatEventDescriptionChanged(
oldDescription: oldDescription ?? this.oldDescription,
newDescription: newDescription ?? this.newDescription,
);