deleteEntry method

Future<void> deleteEntry(
  1. String entry
)

Implementation

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