Address constructor
const
Address({})
Implementation
const Address({
this.line1 = '',
this.line2 = '',
this.city = '',
this.state = '',
this.postalCode = '',
this.country = '',
String? text,
}) : this.text = text ?? '$line1, $postalCode $city, $state, $country';