withSingleRow method

PostgresQuerySpec withSingleRow(
  1. bool value
)

Implementation

PostgresQuerySpec withSingleRow(bool value) => PostgresQuerySpec(
  filters: filters,
  isOrQuery: isOrQuery,
  orderBys: orderBys,
  limit: limit,
  isSingleRow: value,
  hideOnEmpty: hideOnEmpty,
  isStreamingSupabaseQuery: isStreamingSupabaseQuery,
);