anyOf method

bool anyOf(
  1. String sequence
)

Returns true if the sequence contains at least one matching character.

Implementation

bool anyOf(String sequence) => sequence.runes.any(match);