Node constructor

const Node({
  1. String? id,
  2. String? root,
  3. String? previous,
  4. String? pathHash,
  5. NodeContent? content,
})

Implementation

const Node({
  this.id,
  this.root,
  this.previous,
  this.pathHash,
  this.content,
});