ShippingCoverage constructor

ShippingCoverage({
  1. String? estimationDays,
  2. String? shippingDeliveryDays,
  3. String? price,
  4. int? anotherCoveredBranches,
  5. bool? isCovered,
})

Implementation

ShippingCoverage({
  String? estimationDays,
  String? shippingDeliveryDays,
  String? price,
  int? anotherCoveredBranches,
  bool? isCovered,
}) : estimationDays = estimationDays ?? "",
     shippingDeliveryDays = shippingDeliveryDays ?? "",
     price = price ?? "",
     anotherCoveredBranches = anotherCoveredBranches ?? 0,
     isCovered = isCovered ?? false;