isMarginNegativeVertical method
Implementation
bool isMarginNegativeVertical() {
double? marginBottom = renderStyle.marginBottom.computedValue;
double? marginTop = renderStyle.marginTop.computedValue;
return marginBottom < 0 || marginTop < 0;
}