resume method

bool resume()

重新开始监听 Restart listening

Implementation

bool resume() {
  if (!_supportPlatform) return false;
  if (_streamSubscription != null && _streamSubscription!.isPaused) {
    _streamSubscription!.resume();
    return true;
  }
  return false;
}