pausePlayer method
Implementation
static Future<void> pausePlayer() async {
try {
await _channel.invokeMethod('pausePlayer');
} on PlatformException catch (e) {
print(e.details);
}
}
static Future<void> pausePlayer() async {
try {
await _channel.invokeMethod('pausePlayer');
} on PlatformException catch (e) {
print(e.details);
}
}