noneOf method

bool noneOf(
  1. String sequence
)

Returns true if the sequence contains no matching character.

Implementation

bool noneOf(String sequence) => sequence.runes.none(match);