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