Address constructor
      const
      Address({ 
    
- List<String> addressLines = const <String>[],
- AddressType type = AddressType.unknown,
Creates a new Address instance.
Implementation
const Address({
  this.addressLines = const <String>[],
  this.type = AddressType.unknown,
});