deleteJson method

Future deleteJson(
  1. String path, {
  2. Object? body,
})

Implementation

Future<dynamic> deleteJson(String path, {Object? body}) async => _decode(
      await http.delete(_url(path), headers: _headers(), body: _encode(body)),
    );