IONestedOps<A>
Extension methods for IO values that themselves produce an IO.
Methods
flatten() extension
IO<A> flatten()Returns an IO that will complete with the value of the inner IO.
Available on IO<A>, provided by the IONestedOps<A> extension
Implementation
dart
IO<A> flatten() => _flatten().traced('flatten');