deleteEntry method
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),
),
),
],
),
),
),
);