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