CandidateEntity constructor

CandidateEntity({
  1. String? id,
  2. String? parentId,
  3. num? weight,
  4. String? name,
  5. num? isDept,
  6. List<CandidateEntity>? children,
  7. String? userId,
  8. String? roleKey,
})

Implementation

CandidateEntity({
  this.id,
  this.parentId,
  this.weight,
  this.name,
  this.isDept,
  this.children,
  this.userId,
  this.roleKey,
});