PgrServiceModel constructor
const
PgrServiceModel({
- required String clientReferenceId,
- bool active = true,
- String? id,
- required String tenantId,
- required String serviceCode,
- String? serviceRequestId,
- required String description,
- String? accountId,
- required PgrServiceApplicationStatus applicationStatus,
- String? source,
- required PgrComplainantModel user,
- bool isDeleted = false,
- int rowVersion = 1,
- required PgrAddressModel address,
- String? additionalDetail,
- AuditDetails? auditDetails,
- ClientAuditDetails? clientAuditDetails,
Implementation
const PgrServiceModel({
required this.clientReferenceId,
this.active = true,
this.id,
required this.tenantId,
required this.serviceCode,
this.serviceRequestId,
required this.description,
this.accountId,
required this.applicationStatus,
this.source,
required this.user,
this.isDeleted = false,
this.rowVersion = 1,
required this.address,
this.additionalDetail,
super.auditDetails,
super.clientAuditDetails,
}) : super(isDeleted: false);