getHeight method

double? getHeight()

Implementation

double? getHeight() {
  if (orientation == PumaOrientation.vertical) {
    return 8.0 * value;
  }

  return height;
}