nullable property
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,
);
});
}
Implementation
set nullable(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FieldDescription_setNullable(
_handle,
value,
errorHandler,
);
});
}