NodePath constructor

NodePath({
  1. String? id,
  2. String? name,
})

Returns a new NodePath instance.

Implementation

NodePath({
  this.id,
  this.name,
});