percentageSpaceVertical method

double percentageSpaceVertical(
  1. double percentage
)

Returns the vertical space calculated as a percentage of the total height.

Example:

double result = sizeConfig.percentageSpaceVertical(50);

Implementation

double percentageSpaceVertical(double percentage) =>
    percentageSize(height, percentage);