skipWhile abstract method
Eagerly selects a trailing sequence of characters.
Checks each character, from first to last, against test
,
until one is found where test
returns false
.
The characters starting with the first one
where test
returns false
, are included in the result.
If no characters test false
, the result is an empty sequence
of characters.
Implementation
@override
Characters skipWhile(bool Function(String) test);