Address constructor
Address({})
Returns a new Address instance.
Implementation
Address({
required this.id,
required this.name,
this.email,
this.phone,
this.line1,
this.line2,
this.postalCode,
this.city,
this.state,
this.country,
});