toList abstract method

List<double> toList()

Collects elements into a List of double.

Example

final list = DoubleStream.of([1.5, 2.5, 3.5]).toList();

Implementation

List<double> toList();