Variable constructor

Variable(
  1. VariableType type
)

Implementation

Variable(VariableType type) {
    this.type = type.toString().split(".").last;
    _id = _generateId();
}