vectorIterable property

Iterable<Reference> vectorIterable

Get an iterable if the underlying flexBuffer value is a vector. Otherwise throws an exception.

Implementation

Iterable<Reference> get vectorIterable {
  if (isVector == false) {
    throw UnsupportedError('Value is not a vector. It is: $_valueType');
  }
  return _VectorIterator(this);
}