NumericalIntegration constructor

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

Expects the lowerBound and upperBound of the integral.

Implementation

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