pause method

Future<void> pause()

Sets the player state to "pause"

Implementation

Future<void> pause() async {
  await _methodChannel.invokeMethod<void>('pause');
}