copyWith method
Implementation
BusinessAreas copyWith({
LatLng? centerPoint,
String? name,
}) {
return BusinessAreas(
centerPoint: centerPoint ?? this.centerPoint,
name: name ?? this.name,
);
}
BusinessAreas copyWith({
LatLng? centerPoint,
String? name,
}) {
return BusinessAreas(
centerPoint: centerPoint ?? this.centerPoint,
name: name ?? this.name,
);
}