ContrastCurve constructor

ContrastCurve(
  1. double low,
  2. double normal,
  3. double medium,
  4. double high,
)

Creates a ContrastCurve object.

low Value for contrast level -1.0 normal Value for contrast level 0.0 medium Value for contrast level 0.5 high Value for contrast level 1.0

Implementation

ContrastCurve(
  this.low,
  this.normal,
  this.medium,
  this.high,
);