containsAll method

bool containsAll(
  1. List<String> values
)

Checks if this string contains all the given values.

Example: "123e4567-e89b-12d3-a456-426614174000".containsAll(['123', '456']) -> true.

Implementation

bool containsAll(List<String> values) =>
    values.every((value) => contains(value));