copyWith method
Implementation
Aoi copyWith({
String? adCode,
num? aoiArea,
LatLng? aoiCenterPoint,
String? aoiId,
String? aoiName,
}) {
return Aoi(
adCode: adCode ?? this.adCode,
aoiArea: aoiArea ?? this.aoiArea,
aoiCenterPoint: aoiCenterPoint ?? this.aoiCenterPoint,
aoiId: aoiId ?? this.aoiId,
aoiName: aoiName ?? this.aoiName,
);
}