PolynomialInterpolation constructor

const PolynomialInterpolation({
  1. required List<InterpolationNode> nodes,
})

Creates a PolynomialInterpolation instance from the given interpolation nodes.

Implementation

const PolynomialInterpolation({
  required List<InterpolationNode> nodes,
}) : super(nodes);