pause method

Future<Result> pause()

Pauses the audio that is currently playing.

If you call resume later, the audio will resume from the point that it has been paused.

Implementation

Future<Result> pause() async {
  return ResultMap[await _invokeMethod('pause') as int] ?? Result.ERROR;
}