save method

Response save(
  1. String jsonRequest
)

Implementation

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