copyWith method

Venue copyWith({
  1. Location? location,
  2. String? title,
  3. String? address,
  4. String? provider,
  5. String? id,
  6. String? type,
})

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,
    );