TotalAmount constructor

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

Implementation

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