toList method

List<T> toList()

Returns a modifiable "flattened" view of the matrix as a List<T> object.

Implementation

List<T> toList() => List<T>.from(_data);