ProductSuite constructor

ProductSuite({
  1. List<String>? logicalProducts,
  2. String? name,
  3. bool? replaced,
  4. String? replacement,
  5. String? title,
})

Implementation

ProductSuite({
  this.logicalProducts,
  this.name,
  this.replaced,
  this.replacement,
  this.title,
});