dividedSpace method

double dividedSpace(
  1. double dividedLength
)

Returns the space calculated by dividing the detected pixel size by the specified divided length.

Example:

double result = sizeConfig.dividedSpace(2);

Implementation

double dividedSpace(double dividedLength) =>
    dividedSize(_detectedPixel, dividedLength);