DELETE constructor Null safety

const DELETE(
  1. String path,
  2. {bool autoCastResponse = true}
)

Implementation

const DELETE(final String path, {bool autoCastResponse = true})
    : super(HttpMethod.DELETE, path, autoCastResponse: autoCastResponse);