deleteRecord method

Future<void> deleteRecord(
  1. String record
)

Implementation

Future<void> deleteRecord(String record) => points.delete(
  DeletePoints(
    wait: false,
    collectionName: namespace,
    points: PointsSelector(
      filter: Filter(
        must: [
          Condition(
            field_1: FieldCondition(
              key: "record",
              match: Match(keyword: record),
            ),
          ),
        ],
      ),
    ),
  ),
);