resume method

bool resume()

重新开始监听

Implementation

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