PostgresQuerySpec constructor
PostgresQuerySpec({
- List<
PostgresFilter> ? filters, - bool isOrQuery = false,
- List<
PostgresOrderBy> ? orderBys, - int? limit,
- bool isSingleRow = false,
- bool hideOnEmpty = false,
- bool isStreamingSupabaseQuery = false,
Implementation
PostgresQuerySpec({
List<PostgresFilter>? filters,
this.isOrQuery = false,
List<PostgresOrderBy>? orderBys,
this.limit,
this.isSingleRow = false,
this.hideOnEmpty = false,
this.isStreamingSupabaseQuery = false,
}) : filters =
filters == null
? const <PostgresFilter>[]
: List<PostgresFilter>.unmodifiable(filters),
orderBys =
orderBys == null
? const <PostgresOrderBy>[]
: List<PostgresOrderBy>.unmodifiable(orderBys);