toList method

List<AppInfo> toList ({dynamic growable: false })

Creates a List containing the AppInfo elements of this Applications instance.

The elements are in iteration order. The list is fixed-length if growable is false.

Implementation

List<AppInfo> toList({growable = false}) =>
    List<AppInfo>.from(this._apps, growable: growable);