height property

double get height

Gets the actual height to use for the bar

Implementation

double get height {
  return getCached("height", () {
    final designHeight = figmaHeight ?? defaultHeight;
    return designHeight < defaultHeight ? defaultHeight : designHeight;
  });
}