IcureStubDto constructor

IcureStubDto({
  1. required String id,
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. String? author,
  6. String? responsible,
  7. String? medicalLocationId,
  8. Set<CodeStubDto> tags = const {},
  9. Set<CodeStubDto> codes = const {},
  10. int? endOfLife,
  11. Set<String> secretForeignKeys = const {},
  12. Map<String, Set<DelegationDto>> cryptedForeignKeys = const {},
  13. Map<String, Set<DelegationDto>> delegations = const {},
  14. Map<String, Set<DelegationDto>> encryptionKeys = const {},
  15. String? encryptedSelf,
})

Returns a new IcureStubDto instance.

Implementation

IcureStubDto({
  required this.id,
  this.rev,
  this.created,
  this.modified,
  this.author,
  this.responsible,
  this.medicalLocationId,
  this.tags = const {},
  this.codes = const {},
  this.endOfLife,
  this.secretForeignKeys = const {},
  this.cryptedForeignKeys = const {},
  this.delegations = const {},
  this.encryptionKeys = const {},
  this.encryptedSelf,
});