AdaptiveQuadrature constructor

const AdaptiveQuadrature({
  1. required String function,
  2. required double lowerBound,
  3. required double upperBound,
})

Creates a AdaptiveQuadrature object.

Implementation

const AdaptiveQuadrature({
  required super.function,
  required super.lowerBound,
  required super.upperBound,
});