skipToPrevious method
Skips to the previous track in the user's queue.
Implementation
Future<void> skipToPrevious({String? deviceId}) async {
final uri = Uri.https(
_baseApiHost,
'/v1/me/player/previous',
deviceId != null ? {'device_id': deviceId} : null,
);
await _postJson(uri);
}