Category constructor

Category({
  1. CategoryEmbedded? embedded,
  2. CategoryLinks? links,
  3. DateTime? createdAt,
  4. String? id,
  5. String? identificationNumber,
  6. required String name,
  7. String? type,
  8. DateTime? updatedAt,
})

Returns a new Category instance.

Implementation

Category({
  this.embedded,
  this.links,
  this.createdAt,
  this.id,
  this.identificationNumber,
  required this.name,
  this.type,
  this.updatedAt,
});