CartValue constructor

CartValue({
  1. double? amount,
  2. String? currency,
})

Implementation

CartValue({
  this.amount,
  this.currency,
});