Vector2D constructor

Vector2D({
  1. Pointer<Vector2C>? originalPointer,
  2. double x = 0,
  3. double y = 0,
})

Implementation

Vector2D({
  super.originalPointer,
  this.x = 0,
  this.y = 0,
});