pause method

Future<void> pause ()

Will pause the player. If player already paused will do nothing

Implementation

static Future<void> pause() async {
  await nativeChannel.invokeMethod("pause");
}