sLimit method
Limit the number of rows returned
Limits the result with the specified count.
count
: The maximum number of rows to return.
Implementation
SupaLimitStreamModifier<B, R> sLimit(int count) =>
SupaLimitStreamModifier(count, null);
Limits the result with the specified count.
count
: The maximum number of rows to return.
SupaLimitStreamModifier<B, R> sLimit(int count) =>
SupaLimitStreamModifier(count, null);