PutAction constructor

PutAction(
  1. String path,
  2. Object body, {
  3. String? json,
  4. String url = "",
})

Implementation

PutAction(String path, this.body, {this.json, this.url = ""})
    : super(path, "PUT");