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