wy property
      
      Vector2
      get
      wy
      
    
    
    
Implementation
Vector2 get wy => Vector2(_v4storage[3], _v4storage[1]);
      
      set
      wy
      (Vector2 arg) 
      
    
    
    
Implementation
set wy(Vector2 arg) {
  final argStorage = arg._v2storage;
  _v4storage[3] = argStorage[0];
  _v4storage[1] = argStorage[1];
}