resume method

Future resume()

Request currently Paused recording to continue

Implementation

Future resume() async {
//    if (!isOfflineMode) {
//      return throw Exception("There's no resume() method in Streaming mode");
//    }
 // _streamingController.requestBeforeStartAudioRecord(_singleUtterance, _listener,_modelParam);
  await _channel.invokeMethod('resume');

  _onTimer();
}