responsiveValue method

double responsiveValue(
  1. double min,
  2. double max
)

Maps the size of the screen from the range breakpoints.extremes to the given range min - max. See SuperResponsive for more info.

Implementation

double responsiveValue(double min, double max) =>
    SuperResponsive.of(this).responsiveValueOfExtremes(this, min, max);