Modules constructor

Modules({
  1. int? id,
  2. String? label,
  3. dynamic productRefId,
  4. String? uniqueIdentifier,
  5. int? menuId,
  6. String? menuLabel,
  7. int? index,
  8. List<Submodule>? submodels,
})

Implementation

Modules(
    {this.id,
    this.label,
    this.productRefId,
    this.uniqueIdentifier,
    this.menuId,
    this.menuLabel,
    this.index,
    this.submodels});