MicroSiteCompetencyItemDataModel constructor

MicroSiteCompetencyItemDataModel({
  1. required String id,
  2. String? type,
  3. String? name,
  4. String? displayName,
  5. String? description,
  6. String? status,
  7. String? count,
  8. List<MicroSiteCompetencyItemDataModel>? children,
})

Implementation

MicroSiteCompetencyItemDataModel({
  required this.id,
  this.type,
  this.name,
  this.displayName,
  this.description,
  this.status,
  this.count,
  this.children,
});