DocumentType constructor

DocumentType({
  1. String? id,
  2. String? code,
  3. String? type,
  4. String? name,
  5. String? description,
  6. bool? signed,
})

Returns a new DocumentType instance.

Implementation

DocumentType({
  this.id,
  this.code,
  this.type,
  this.name,
  this.description,
  this.signed,
});