ShippingAmount constructor

ShippingAmount({
  1. required String amount,
  2. String currency = "SAR",
})

Implementation

ShippingAmount({
  required this.amount,
  this.currency = "SAR",
});