Vector2 constructor Null safety
Construct a new vector with the specified values.
Implementation
factory Vector2(double x, double y) => Vector2.zero()..setValues(x, y);
Construct a new vector with the specified values.
factory Vector2(double x, double y) => Vector2.zero()..setValues(x, y);