There is no skip method in RealmQuery Android SDK

I’m using MongoDB Atlas + Realm and it’s synced to an Android App(https://docs.mongodb.com/realm/sdk/android/), to fetch data from the Realm, I use Realm.where(Class.class).sort…limit…findAllAsync().
The thing is, there’s no skip method, which does exist in the mongodb command line (MongoDB skip() and limit() - w3resource).
This results in my queries loading tons of unnecesary objects in a collection.
I would like to skip a specific amount in the sort, for example, I sort by the ID field, and want to skip the first 49 documents. How can I do this?