copyWith method
Implementation
ChatEventLocationChanged copyWith({
ChatLocation? oldLocation,
ChatLocation? newLocation,
}) => ChatEventLocationChanged(
oldLocation: oldLocation ?? this.oldLocation,
newLocation: newLocation ?? this.newLocation,
);