ServiceModel constructor
ServiceModel({
- ServiceAdditionalFields? additionalFields,
- String? id,
- required String clientId,
- String? serviceDefId,
- bool? isActive,
- String? accountId,
- Map<
String, dynamic> ? additionalDetails, - String? createdAt,
- bool? nonRecoverableError = false,
- String? tenantId,
- int? rowVersion,
- List<
ServiceAttributesModel> ? attributes, - AuditDetails? auditDetails,
- ClientAuditDetails? clientAuditDetails,
- bool? isDeleted = false,
Implementation
ServiceModel({
this.additionalFields,
this.id,
required this.clientId,
this.serviceDefId,
this.isActive,
this.accountId,
this.additionalDetails,
this.createdAt,
this.nonRecoverableError = false,
this.tenantId,
this.rowVersion,
this.attributes,
super.auditDetails,
super.clientAuditDetails,
super.isDeleted = false,
}) : super();