search method

Iterable<Iterable<Page>> search(
  1. bool pred(
    1. Substitution
    )
)

Implementation

Iterable<Iterable<Page>> search(bool Function(untis.Substitution) pred) =>
    map((p) => p.map((p) => Page(p.day, p.subs.where(pred).toList(), p.date,
        p.url, p.previewUrl, p.preview)));