recordFile method

Future<void> recordFile(
  1. int callId,
  2. String pathToMp3File
)

Start recording sound, received from remote side to specified file

Implementation

Future<void> recordFile(int callId, String pathToMp3File) {
  return _platform.recordFile(callId, pathToMp3File);
}