mapValueIterable property

Iterable<Reference> mapValueIterable

Get an iterable for values if the underlying flexBuffer value is a map. Otherwise throws an exception.

Implementation

Iterable<Reference> get mapValueIterable {
  if (isMap == false) {
    throw UnsupportedError('Value is not a map. It is: $_valueType');
  }
  return _MapValueIterator(this);
}