bVal property

bool? get bVal

Implementation

bool? get bVal => this._bVal;
set bVal (bool? bVal)

Implementation

set bVal(bool? bVal) {
  this._bVal = bVal;
  this.__isset_bVal = true;
}