likeExp method
Whether this column matches the given expression.
For details on which patterms are valid and how they are interpreted, check out this tutorial or the SQLite documentation.
Implementation
Expression<bool> likeExp(Expression<String> regex,
{Expression<String>? escape}) {
return _LikeOperator(this, regex, escape: escape);
}