effectiveBottom method

double? effectiveBottom(
  1. BaseNode? parent
)

Implementation

double? effectiveBottom(BaseNode? parent) {
  if (parent == null || bottom == null) return bottom;
  return bottom! - parent.innerBoxLocal.edgeBottom;
}