copyWithWrapped method
Implementation
DeviceAddressV2 copyWithWrapped(
{Wrapped<double?>? lat,
Wrapped<double?>? long,
Wrapped<String?>? streetAddress,
Wrapped<String?>? city,
Wrapped<String?>? state,
Wrapped<String?>? postalCode}) {
return DeviceAddressV2(
lat: (lat != null ? lat.value : this.lat),
long: (long != null ? long.value : this.long),
streetAddress:
(streetAddress != null ? streetAddress.value : this.streetAddress),
city: (city != null ? city.value : this.city),
state: (state != null ? state.value : this.state),
postalCode: (postalCode != null ? postalCode.value : this.postalCode));
}