toList method

List<Object?> toList({
  1. bool growable = false,
})

A (untyped) List with the values of this tuple.

Implementation

List<Object?> toList({bool growable = false}) =>
    List.from(iterable, growable: growable);