resume method

Future<void> resume()

Resumes paused stream associated with this object

Implementation

Future<void> resume() async {
  if (!_stopped && _playing) {
    await _pool.pause(stream);
    _playing = true;
  }
}