DocumentEntity constructor

DocumentEntity({
  1. int? id,
  2. String? name,
  3. String? cod,
  4. String? description,
})

Implementation

DocumentEntity({
  this.id,
  this.name,
  this.cod,
  this.description,
});