toList method

List toList({
  1. bool growable = false,
})

Creates a List containing the items of this Tuple2.

Implementation

List toList({bool growable = false}) => List.from([item1, item2], growable: growable);