copyWith method
Implementation
ChatLocation copyWith({Location? location, String? address}) => ChatLocation(
location: location ?? this.location,
address: address ?? this.address,
);
ChatLocation copyWith({Location? location, String? address}) => ChatLocation(
location: location ?? this.location,
address: address ?? this.address,
);