NodeAttribute constructor

NodeAttribute(
  1. dynamic name,
  2. dynamic type
)

Implementation

NodeAttribute(name, type) {
  this.name = name;
  this.type = type;
}