defaultHeight property

double get defaultHeight

Gets the default height for this type of bar

Implementation

double get defaultHeight => getCached(
  "defaultHeight",
  () =>
      barType == FigmaBarType.top
          ? kToolbarHeight
          : kBottomNavigationBarHeight,
);