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