CoapRequest.newDelete constructor

CoapRequest.newDelete({
  1. bool confirmable = true,
})

Construct a DELETE request.

Implementation

factory CoapRequest.newDelete({final bool confirmable = true}) =>
    CoapRequest(CoapCode.delete, confirmable: confirmable);