SupaStreamModifier<B extends SupaCore, R extends SupaRecord<B>> class

Represents a modifier that can be applied to a Supabase stream query.

Filters work on the row level. That is, they allow you to return rows that only match certain conditions without changing the shape of the rows. Modifiers are everything that don't fit that definition.

Modifiers must be specified after filters.

The response is always a stream of a list of records.

Implementers
Available extensions

Constructors

SupaStreamModifier(SupaStreamModifier<B, R>? previousModifier)
Represents a modifier that can be applied to a Supabase stream query.
const

Properties

hashCode int
The hash code for this object.
no setterinherited
previousModifier SupaStreamModifier<B, R>?
The modifier that was applied before this one.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

build(SupabaseStreamBuilder builder) → SupabaseStreamBuilder
Cascades the Supabase modifier onto the provided builder.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited