CoapRequest.newIPatch constructor

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

Construct a iPATCH request.

Implementation

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