pause method

bool pause()

pause record

Implementation

bool pause() {
  if (_status == RecordStatus.RECORDING) {
    _status = RecordStatus.PAUSE;
    _channel.invokeMethod("pause");
    return true;
  }
  return false;
}