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