containsElement method
Matches if at least one element of the list equals the given value.
Implementation
Condition<EntityT> containsElement(String value,
{bool? caseSensitive, String? alias}) =>
_StringCondition<EntityT, List<String>>(
_ConditionOp.containsElement, this, value, null, alias,
caseSensitive: caseSensitive);