selectAllDistinct method

  1. @override
AsyncSelect selectAllDistinct(
  1. Iterable<SelectResultInterface> results
)
override

Starts a new query, which returns distinct rows and defines the selected columns.

Implementation

@override
AsyncSelect selectAllDistinct(Iterable<SelectResultInterface> results) =>
    AsyncSelectImpl(results, distinct: true);