NumericalIntegration constructor

const NumericalIntegration({
  1. required double lowerBound,
  2. required double upperBound,
  3. required int intervals,
})

Expects the lowerBound and upperBound of the integral.

Implementation

const NumericalIntegration({
  required this.lowerBound,
  required this.upperBound,
  required this.intervals,
});