distinctWith<S> method
use for FlowR.stream or flowr.FrViewModel.stream
.distinctBy((event) => event.foo)
Implementation
Stream<S> distinctWith<S>(S Function(T event) field) => map(field).distinct();
use for FlowR.stream or flowr.FrViewModel.stream
.distinctBy((event) => event.foo)
Stream<S> distinctWith<S>(S Function(T event) field) => map(field).distinct();