fullHeight property

double fullHeight

The entire height of the line, including its y and padding

Implementation

double get fullHeight {
  final result = y + height;

  if (isLast) {
    return result + _lastLinePadding.bottom;
  } else {
    return result + _innerLinePadding.bottom;
  }
}