SimpleContourSelection constructor

const SimpleContourSelection({
  1. required double x,
  2. required double y,
  3. required double value,
  4. required double lowerBound,
  5. required double upperBound,
  6. required int bandIndex,
  7. SimpleContourPoint? nearestPoint,
})

Implementation

const SimpleContourSelection({
  required this.x,
  required this.y,
  required this.value,
  required this.lowerBound,
  required this.upperBound,
  required this.bandIndex,
  this.nearestPoint,
});