limit method

SupabaseStreamBuilder limit(
  1. int count
)

Limits the result with the specified count.

supabase.from('users').stream(primaryKey: ['id']).limit(10);

Implementation

SupabaseStreamBuilder limit(int count) {
  _limit = count;
  return this;
}