Submodule constructor

Submodule({
  1. int? id,
  2. String? label,
  3. dynamic productRefId,
  4. String? uniqueIdentifier,
  5. List<Features>? features,
})

Implementation

Submodule(
    {this.id,
    this.label,
    this.productRefId,
    this.uniqueIdentifier,
    this.features});