match static method

ExpressionInterface match({
  1. required String indexName,
  2. required String query,
})

Creates a full-text match expression against the full-text index of the given indexName and with the given full-text query.

Implementation

static ExpressionInterface match({
  required String indexName,
  required String query,
}) =>
    BinaryExpression(
      'match()',
      Expression.string(indexName),
      Expression.string(query),
    );