NodeCode constructor

NodeCode(
  1. dynamic name,
  2. dynamic type, [
  3. dynamic code = ''
])

Implementation

NodeCode(name, type, [code = '']) {
  this.name = name;
  this.type = type;
  this.code = code;
}