toLinear static method

double toLinear(
  1. double c
)

Implementation

static double toLinear(double c) {
  if (c > 0.04045) {
    return math.pow((c + 0.055) / (1 + 0.055), 2.4) as double;
  } else {
    return c / 12.92;
  }
}