limitBy function
Creates a new instance of FindOptions with limit set to limit.
Implementation
FindOptions limitBy(int limit) {
var findOptions = FindOptions();
findOptions.limit = limit;
return findOptions;
}
Creates a new instance of FindOptions with limit set to limit.
FindOptions limitBy(int limit) {
var findOptions = FindOptions();
findOptions.limit = limit;
return findOptions;
}