length2 property
      
      double
      get
      length2
      
    
    
The squared length of the vector.
Implementation
double get length2 =>
    _v2storage[1] * _v2storage[1] + _v2storage[0] * _v2storage[0];The squared length of the vector.
double get length2 =>
    _v2storage[1] * _v2storage[1] + _v2storage[0] * _v2storage[0];