top property
The top parameter in insets.
Implementation
double get top {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Insets_getTop(
_handle,
errorHandler,
);
});
}
Implementation
set top(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Insets_setTop(
_handle,
value,
errorHandler,
);
});
}