toArr method

Arr<T> toArr()

Creates an Array from an Iterable

Implementation

@pragma("vm:prefer-inline")
Arr<T> toArr() => Arr.fromList(toList(growable: false));