PgrComplainantModel constructor

const PgrComplainantModel({
  1. int? id,
  2. required String clientReferenceId,
  3. required String complaintClientReferenceId,
  4. String? userName,
  5. String? name,
  6. String? type,
  7. String? mobileNumber,
  8. String? emailId,
  9. List<PgrRolesModel> roles = const [],
  10. required String tenantId,
  11. String? uuid,
  12. bool active = true,
  13. bool isDeleted = false,
  14. int rowVersion = 1,
  15. AuditDetails? auditDetails,
  16. 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();