distinctBy<S> method

ValueStream<T> distinctBy<S>([
  1. S field(
    1. T event
    )?
])

Implementation

ValueStream<T> distinctBy<S>([S Function(T event)? field]) =>
    _DistinctValueStream<T, S>(this, field);