isMarginNegativeHorizontal method
Implementation
bool isMarginNegativeHorizontal() {
double? marginLeft = renderStyle.marginLeft.computedValue;
double? marginRight = renderStyle.marginRight.computedValue;
return marginLeft < 0 || marginRight < 0;
}