ShippingMethod constructor

ShippingMethod({
  1. String? type,
  2. String? deliveryType,
  3. String? entityId,
  4. String? entityName,
  5. List<AddressDetails>? addressDetails,
})

Implementation

ShippingMethod(
    {this.type,
    this.deliveryType,
    this.entityId,
    this.entityName,
    this.addressDetails});