stop method
Stops and destroys the service. init() has to be run after this one, if you want to start playback again
This also runs onPlayerCompleted()
to free resources
Implementation
static Future<void> stop() async {
await nativeChannel.invokeMethod("stop");
}