dividedSpaceVertical method

double dividedSpaceVertical(
  1. double dividedLength
)

Returns the vertical space calculated by dividing the total height by the specified divided length.

Example:

double result = sizeConfig.dividedSpaceVertical(2);

Implementation

double dividedSpaceVertical(double dividedLength) =>
    dividedSize(height, dividedLength);