nVal property

int? get nVal

Implementation

int? get nVal => this._nVal;
set nVal (int? nVal)

Implementation

set nVal(int? nVal) {
  this._nVal = nVal;
  this.__isset_nVal = true;
}