top property

double top

The top parameter in insets.

Implementation

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

Implementation

set top(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Insets_setTop(_handle, value, errorHandler);
  });
}