Returns a filtered list containing elements that satisfy test.
test
List<T> where(bool Function(T) test) => value.where((e) => test(e)).toList();