Address constructor

const Address({
  1. List<String> addressLines = const <String>[],
  2. AddressType type = AddressType.unknown,
})

Creates a new Address instance.

Implementation

const Address({
  this.addressLines = const <String>[],
  this.type = AddressType.unknown,
});