getIsEmpty method
Determine if the insets are set to default values.
Return Value: true if the inset of all 4 edges are 0; false otherwise.
Implementation
bool getIsEmpty() {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Insets_getIsEmpty(_handle, errorHandler);
});
}