Status constructor

Status({
  1. String? type,
  2. List<Currency?>? currencies,
  3. List<Product?>? products,
})

Implementation

Status({
  this.type,
  this.currencies,
  this.products,
});