ResultInfoDto constructor

ResultInfoDto({
  1. String? ssin,
  2. String? lastName,
  3. String? firstName,
  4. int? dateOfBirth,
  5. String? sex,
  6. String? documentId,
  7. String? protocol,
  8. bool? complete,
  9. int? demandDate,
  10. String? labo,
  11. String? engine,
  12. Set<CodeStubDto> codes = const {},
  13. List<ServiceDto> services = const [],
})

Returns a new ResultInfoDto instance.

Implementation

ResultInfoDto({
  this.ssin,
  this.lastName,
  this.firstName,
  this.dateOfBirth,
  this.sex,
  this.documentId,
  this.protocol,
  this.complete,
  this.demandDate,
  this.labo,
  this.engine,
  this.codes = const {},
  this.services = const [],
});