copyWith method
OctaGeoCoderEntity
copyWith(
{ - int? placeId,
- String? licence,
- String? osmType,
- int? osmId,
- String? lat,
- String? lon,
- int? placeRank,
- String? category,
- String? type,
- double? importance,
- String? addresstype,
- String? name,
- String? displayName,
- Address? address,
- List<String>? boundingbox,
})
Implementation
OctaGeoCoderEntity copyWith({
int? placeId,
String? licence,
String? osmType,
int? osmId,
String? lat,
String? lon,
int? placeRank,
String? category,
String? type,
double? importance,
String? addresstype,
String? name,
String? displayName,
Address? address,
List<String>? boundingbox,
}) =>
OctaGeoCoderEntity(
placeId: placeId ?? this.placeId,
licence: licence ?? this.licence,
osmType: osmType ?? this.osmType,
osmId: osmId ?? this.osmId,
lat: lat ?? this.lat,
lon: lon ?? this.lon,
placeRank: placeRank ?? this.placeRank,
category: category ?? this.category,
type: type ?? this.type,
importance: importance ?? this.importance,
addresstype: addresstype ?? this.addresstype,
name: name ?? this.name,
displayName: displayName ?? this.displayName,
address: address ?? this.address,
boundingbox: boundingbox ?? this.boundingbox,
);