asIterable method

Iterable<T> asIterable()

Implementation

Iterable<T> asIterable() sync* {
  if (isValid) {
    yield _value!;
  }
}