copyWith method
Implementation
DeviceAddressV2 copyWith(
{double? lat,
double? long,
String? streetAddress,
String? city,
String? state,
String? postalCode}) {
return DeviceAddressV2(
lat: lat ?? this.lat,
long: long ?? this.long,
streetAddress: streetAddress ?? this.streetAddress,
city: city ?? this.city,
state: state ?? this.state,
postalCode: postalCode ?? this.postalCode);
}