resume method
Will resume playback (only if already loaded earlier and paused afterwards). If already playing will do nothing
Implementation
static Future<void> resume() async {
await _checkIfBound();
await _nativeChannel.invokeMethod("resume");
}