SupaLimitStreamModifier<B extends SupaCore, R extends SupaRecord<B>> constructor

  1. @internal
const SupaLimitStreamModifier<B extends SupaCore, R extends SupaRecord<B>>(
  1. int count,
  2. SupaStreamModifier<B, R>? previousModifier
)

Limit the number of rows returned

Limits the result with the specified count.

count: The maximum number of rows to return.

Implementation

@internal
const SupaLimitStreamModifier(this.count, super.previousModifier);