copyWith method
Implementation
Venue copyWith({
Location? location,
String? title,
String? address,
String? provider,
String? id,
String? type,
}) => Venue(
location: location ?? this.location,
title: title ?? this.title,
address: address ?? this.address,
provider: provider ?? this.provider,
id: id ?? this.id,
type: type ?? this.type,
);