Vector2.zero constructor

Vector2.zero([
  1. double x = 0,
  2. double y = 0
])

Implementation

Vector2.zero([double x = 0, double y = 0]){
  this.x = x;
  this.y = y;
}