pause method
Pauses the player.
Implementation
@override
void pause() async {
try {
await _methodChannel.invokeMethod("pause");
} catch (e) {
throw Exception("Unable to pause the player [Pause]");
}
}
Pauses the player.
@override
void pause() async {
try {
await _methodChannel.invokeMethod("pause");
} catch (e) {
throw Exception("Unable to pause the player [Pause]");
}
}