neqOrNull method

SupabaseStreamBuilder neqOrNull(
  1. String column,
  2. Object? value
)

Applies a not-equal filter (neq) if value is not null.

Implementation

SupabaseStreamBuilder neqOrNull(String column, Object? value) =>
    _applyFilterOrNull(column: column, value: value, filterFn: neq) ?? this;