save method

Response save(
  1. String jsonRequest
)

Implementation

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