copyWith method
Implementation
Aoi copyWith({
String? id,
String? name,
String? adcode,
String? location,
String? area,
String? distance,
String? type,
}) {
return Aoi(
id: id ?? this.id,
name: name ?? this.name,
adcode: adcode ?? this.adcode,
location: location ?? this.location,
area: area ?? this.area,
distance: distance ?? this.distance,
type: type ?? this.type,
);
}