ServiceDefinitionModel constructor

ServiceDefinitionModel({
  1. ServiceDefinitionAdditionalFields? additionalFields,
  2. String? id,
  3. String? tenantId,
  4. String? code,
  5. bool? isActive,
  6. bool? nonRecoverableError = false,
  7. int? rowVersion,
  8. List<AttributesModel>? attributes,
  9. AuditDetails? auditDetails,
  10. ClientAuditDetails? clientAuditDetails,
  11. bool? isDeleted = false,
})

Implementation

ServiceDefinitionModel({
  this.additionalFields,
  this.id,
  this.tenantId,
  this.code,
  this.isActive,
  this.nonRecoverableError = false,
  this.rowVersion,
  this.attributes,
  super.auditDetails,
  super.clientAuditDetails,
  super.isDeleted = false,
}) : super();