length property Null safety
Returns the number of elements in the iterable.
This is an efficient operation that doesn't require iterating through the elements.
Implementation
@override
int get length => _values.length;
Returns the number of elements in the iterable.
This is an efficient operation that doesn't require iterating through the elements.
@override
int get length => _values.length;