CartesianRangeResult constructor

CartesianRangeResult({
  1. required double xUnitValue,
  2. required double yUnitValue,
  3. required double maxXRange,
  4. required double maxYRange,
  5. required double minXRange,
  6. required double minYRange,
})

Implementation

CartesianRangeResult({
  required this.xUnitValue,
  required this.yUnitValue,
  required this.maxXRange,
  required this.maxYRange,
  required this.minXRange,
  required this.minYRange,
});