where abstract method

  1. @override
Characters where(
  1. bool test(
    1. String
    )
)
override

Eagerly selects a subset of the characters.

Tests each character against test, and returns the characters of the concatenation of those character strings.

Implementation

@override
Characters where(bool Function(String) test);