bottom property

double bottom

The bottom parameter in insets.

Implementation

double get bottom {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Insets_getBottom(
      _handle,
      errorHandler,
    );
  });
}
void bottom=(double value)

Implementation

set bottom(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Insets_setBottom(
      _handle,
      value,
      errorHandler,
    );
  });
}