where method

T where(
  1. bool test(
    1. Album element
    )
)

Implementation

T where(bool Function(Album element) test) {
  return this as T..albums = albums.where(test).toList();
}