Address constructor
Address({})
Implementation
Address({
required this.id,
required this.name,
required this.line1,
required this.line2,
required this.city,
required this.state,
required this.country,
required this.zip,
required this.phoneNumber,
required this.createdAt,
});