DeliveryAddressModel constructor

DeliveryAddressModel({
  1. String? name,
  2. String? buildingName,
  3. String? description,
})

Implementation

DeliveryAddressModel({
  this.name,
  this.buildingName,
  this.description,
});