limit method
Returns FireDartQueryReference that's additionally limited to only return up to the specified number of documents.
Implementation
FireDartQueryReference limit(int count) {
_structuredQuery.limit = Int32Value()..value = count;
return this;
}