containsAny method
Checks if this string contains any of the given values.
Example: "123e4567-e89b-12d3-a456-426614174000".containsAny(['123', '456']) -> true.
Implementation
bool containsAny(List<String> values) =>
values.any((value) => contains(value));