skip property

int? skip
final

How many documents to skip.

Can be left null for no skipping to take place, but the number of results is still dependent on the take property. If both this property and take are null, all documents fitting the searchConditions (and limited by tenancy and permissions) are returned.

Implementation

/// If both this property and [take] are null,
/// all documents fitting the [searchConditions]
/// (and limited by tenancy and permissions) are
/// returned.
final int? skip;