Industries constructor

Industries({
  1. DateTime? dateCreated,
  2. DateTime? lastUpdated,
  3. int? industryId,
  4. required String industryName,
  5. required String shortName,
  6. String? slug,
  7. int? naiscCode,
  8. String? description,
})

Returns a new Industries instance.

Implementation

Industries({
  this.dateCreated,
  this.lastUpdated,
  this.industryId,
  required this.industryName,
  required this.shortName,
  this.slug,
  this.naiscCode,
  this.description,
});