delete method

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

Implementation

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