pause method

Future<void> pause()

Pause current music

Implementation

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