Resolution constructor

Resolution({
  1. String? id,
  2. String? documentTypeId,
  3. String? prefix,
  4. int? from,
  5. int? to,
  6. int? consecutive,
  7. String? number,
  8. String? dateFrom,
  9. String? dateTo,
  10. String? technicalKey,
  11. bool? isExpired,
  12. int? isActive,
  13. String? createdAt,
  14. String? updatedAt,
})

Implementation

Resolution({
  this.id,
  this.documentTypeId,
  this.prefix,
  this.from,
  this.to,
  this.consecutive,
  this.number,
  this.dateFrom,
  this.dateTo,
  this.technicalKey,
  this.isExpired,
  this.isActive,
  this.createdAt,
  this.updatedAt,
});