save method

Response save(
  1. String jsonRequest
)

Implementation

http.Response save(String jsonRequest) {
  _complaintService?.save(Complaint.fromJson(jsonDecode(jsonRequest)));
  return http.Response("", HttpStatus.created);
}