split method

  1. @override
Stream<List<int>> split()

Returns a single-subscription stream that's a copy of the input stream.

This will throw a StateError if close has been called.

Implementation

@override
Stream<List<int>> split() => body;