regEx method

void regEx(
  1. String column,
  2. String value
)

Returns an object where the String column has a regEx performed on, this can include ^StringsWith, or ^EndsWith. This can be manipulated to the users desire

Implementation

void regEx(String column, String value) {
  queries.add(_buildQueryWithColumnValueAndOperator(
      MapEntry<String, dynamic>(column, value), '\$regex'));
}