whereSync method

Iterable<Sync<T>> whereSync()

Filters for Sync elements, returning an iterable of the Sync instances.

Implementation

Iterable<Sync<T>> whereSync() =>
    where((e) => e.isSync()).map((e) => e.sync().unwrap());