nullable property

bool nullable

True if the field is nullable.

The default value is true.

Implementation

bool get nullable {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_FieldDescription_getNullable(
      _handle,
      errorHandler,
    );
  });
}
void nullable=(bool value)

Implementation

set nullable(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_FieldDescription_setNullable(
      _handle,
      value,
      errorHandler,
    );
  });
}