nullable property

bool nullable

True if the field is nullable.

Implementation

bool get nullable {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Field_getNullable(
      _handle,
      errorHandler,
    );
  });
}