On this page
List<E>.empty constructor
- @Since("2.9")
- {bool growable = false}
Creates a new empty list.
If growable
is false
, which is the default, the list is a fixed-length list of length zero. If growable
is true
, the list is growable and equivalent to <E>[]
.
final growableList = List.empty(growable: true); // []
growableList.add(1); // [1]
final fixedLengthList = List.empty(growable: false);
fixedLengthList.add(1); // error
Implementation
@Since("2.9")
external factory List.empty({bool growable = false});
© 2012 the Dart project authors
Licensed under the BSD 3-Clause "New" or "Revised" License.
https://api.dart.dev/stable/2.18.5/dart-core/List/List.empty.html