isNullable property

bool isNullable

Implementation

bool get isNullable => _nullable ?? false;
void isNullable=(bool n)

Implementation

set isNullable(bool n) {
  _nullable = n;
}