PostAction constructor

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

Implementation

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