newList method

  1. @override
List<T> newList(
  1. int length, {
  2. bool growable = true,
})
override

Constructs a new list.

If growable is false and the kind is either IntKind or FloatKind, the method returns a TypedData object such as Uint32List.

Implementation

@override
List<T> newList(int length, {bool growable = true}) {
  return List<T>.filled(length, newInstance(), growable: growable);
}