PgrComplainantModel constructor
const
PgrComplainantModel({
- int? id,
- required String clientReferenceId,
- required String complaintClientReferenceId,
- String? userName,
- String? name,
- String? type,
- String? mobileNumber,
- String? emailId,
- List<
PgrRolesModel> roles = const [], - required String tenantId,
- String? uuid,
- bool active = true,
- bool isDeleted = false,
- int rowVersion = 1,
- AuditDetails? auditDetails,
- ClientAuditDetails? clientAuditDetails,
Implementation
const PgrComplainantModel({
this.id,
required this.clientReferenceId,
required this.complaintClientReferenceId,
this.userName,
this.name,
this.type,
this.mobileNumber,
this.emailId,
this.roles = const [],
required this.tenantId,
this.uuid,
this.active = true,
this.isDeleted = false,
this.rowVersion = 1,
super.auditDetails,
super.clientAuditDetails,
}) : super();