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