ClassificationNode constructor

ClassificationNode({
  1. int classificationId,
  2. String taxonomy,
  3. String name,
  4. int parentId,
  5. ClassificationNode parent,
})

Returns a new ClassificationNode instance.

Implementation

ClassificationNode({
  this.classificationId,
  this.taxonomy,
  this.name,
  this.parentId,
  this.parent,
});