resume method
Resumes playback on the player.
Implementation
@override
void resume() async {
try {
await _methodChannel.invokeMethod("resume");
} catch (e) {
log(e.toString());
throw Exception("Unable to resume the player [Resume]");
}
}