copyWith method
Implementation
BusinessArea copyWith({
String? location,
String? name,
String? id,
}) {
return BusinessArea(
location: location ?? this.location,
name: name ?? this.name,
id: id ?? this.id,
);
}
BusinessArea copyWith({
String? location,
String? name,
String? id,
}) {
return BusinessArea(
location: location ?? this.location,
name: name ?? this.name,
id: id ?? this.id,
);
}