resumePlayer method Null safety
Resume the current playback.
An exception is thrown if the player is not in the "paused" state.
Example:
await myPlayer.resumePlayer();
Implementation
Future<void> resumePlayer() async {
print('FS:---> resumePlayer');
await _lock.synchronized(() async {
await _resumePlayer();
});
print('FS:<--- resumePlayer');
}