InterpolationNode constructor

const InterpolationNode({
  1. required double x,
  2. required double y,
})

Creates an InterpolationNode object.

Implementation

const InterpolationNode({
  required this.x,
  required this.y,
});