Response.Created constructor

Response.Created([
  1. String? body
])

Constructor for 201 Created responses.

Implementation

Response.Created([String? body]) : this(HttpStatus.created, body: body);