playFile method

Future<int?> playFile(
  1. int callId,
  2. String pathToMp3File,
  3. bool loop
)

Play file to remote side of the specified call or local speaker (when specified 'callId=0')

Implementation

Future<int?> playFile(int callId, String pathToMp3File, bool loop) {
  return _platform.playFile(callId, pathToMp3File, loop);
}