copyWith method
Implementation
LocationAddress copyWith({
String? countryCode,
String? state,
String? city,
String? street,
}) => LocationAddress(
countryCode: countryCode ?? this.countryCode,
state: state ?? this.state,
city: city ?? this.city,
street: street ?? this.street,
);