distinctWith<S> method

ValueStream<S> distinctWith<S>(
  1. S field(
    1. T event
    )
)

Implementation

ValueStream<S> distinctWith<S>(S Function(T event) field) =>
    _DistinctWithValueStream<T, S>(this, field);