getAudioMixingCurrentPosition method

  1. @override
Future<int?> getAudioMixingCurrentPosition()

Gets the playback position (ms) of the music file.

Call this method when you are in a channel.

Returns

  • The current playback position of the audio mixing file, if this method call is successful.
  • < 0: Failure.

Implementation

@override
Future<int?> getAudioMixingCurrentPosition() {
  return _invokeMethod('getAudioMixingCurrentPosition');
}