toList method

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

Implementation

List<dynamic> toList({bool growable = true}) =>
    toIterable()!.toList(growable: growable);