Buffer<E> constructor

Buffer<E>(
  1. int capacity
)

Implementation

Buffer(int capacity) : _list = List.filled(capacity, null, growable: true);