length property
Current number of elements in the list.
Implementation
@override
int get length => _items.length;
Setting length is not supported.
Always throws UnsupportedError.
Implementation
@override
set length(int newLength) {
throw UnsupportedError('Cannot resize a CircularList');
}