deleteMany method

  1. @override
Future<void> deleteMany({
  1. required DeleteBody body,
  2. String? authorization,
})
override

Implementation

@override
Future<void> deleteMany({
  required DeleteBody body,
  String? authorization,
}) async {
  await _client.request(
    method: 'DELETE',
    path: '/db/many',
    headers: {'authorization': authorization},
    body: body,
  );
}