streamingAudioRecord method

void streamingAudioRecord(
  1. List<int> buffers
)

Implementation

void streamingAudioRecord(List<int> buffers) {
  print('streamingAudioRecord');
  print(buffers.length);
  gRpcRequestStream!.clear();
  gRpcRequestStream!.audioContent = buffers;
  gRpcRequestStreamController.add(gRpcRequestStream);
}