random property

bool? get random

Implementation

bool? get random => this._random;
set random (bool? random)

Implementation

set random(bool? random) {
  this._random = random;
  this.__isset_random = true;
}