intesectByIds method

Iterable<X> intesectByIds(
  1. Set<int> ids
)

Implementation

Iterable<X> intesectByIds(Set<int> ids) => where((element) => ids.contains(element.id));