ProductModel constructor
ProductModel({
- ProductAdditionalFields? additionalFields,
- String? id,
- String? type,
- String? name,
- String? manufacturer,
- bool? nonRecoverableError = false,
- required String clientReferenceId,
- String? tenantId,
- int? rowVersion,
- AuditDetails? auditDetails,
- ClientAuditDetails? clientAuditDetails,
- bool? isDeleted = false,
Implementation
ProductModel({
this.additionalFields,
this.id,
this.type,
this.name,
this.manufacturer,
this.nonRecoverableError = false,
required this.clientReferenceId,
this.tenantId,
this.rowVersion,
super.auditDetails,
super.clientAuditDetails,
super.isDeleted = false,
}) : super();