operator ~ method

List<T> operator ~()

Converts the vector to a standard Dart list.

Implementation

List<T> operator ~() => List<T>.from(_data);