State constructor

State({
  1. bool init = false,
  2. String? customerId,
  3. required Map<String, Product> products,
})

Implementation

State({
  this.init = false,
  this.customerId,
  required this.products,
});