delete method

Future<Response> delete(
  1. dynamic url, [
  2. AjanuwHttpConfig? config
])

Implementation

Future<Response> delete(url, [AjanuwHttpConfig? config]) => request(
      createConfig(config)
        ..method = 'delete'
        ..url = url,
    );