PgrComplainantResponseModel constructor

const PgrComplainantResponseModel({
  1. int? id,
  2. String? userName,
  3. String? name,
  4. String? type,
  5. String? mobileNumber,
  6. String? emailId,
  7. List<PgrRolesModel>? roles = const [],
  8. String? tenantId,
  9. String? uuid,
  10. bool? active = true,
  11. int? rowVersion = 1,
  12. AuditDetails? auditDetails,
  13. bool? isDeleted = false,
})

Implementation

const PgrComplainantResponseModel({
  this.id,
  this.userName,
  this.name,
  this.type,
  this.mobileNumber,
  this.emailId,
  this.roles = const [],
  this.tenantId,
  this.uuid,
  this.active = true,
  this.rowVersion = 1,
  super.auditDetails,
      super.isDeleted  = false,
}) : super();