copyWith method
Implementation
LocationIpResponse copyWith({
String? status,
String? info,
String? infoCode,
String? province,
String? city,
String? adcode,
LatLngBounds? rectangle,
}) {
return LocationIpResponse(
status: status ?? this.status,
info: info ?? this.info,
infoCode: infoCode ?? this.infoCode,
province: province ?? this.province,
city: city ?? this.city,
adcode: adcode ?? this.adcode,
rectangle: rectangle ?? this.rectangle,
);
}