ShippingInformation constructor

ShippingInformation({
  1. required Address address,
  2. String? name,
  3. String? phone,
})

Implementation

ShippingInformation({
  required this.address,
  this.name,
  this.phone,
});