Response.Ok constructor

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

Constructor for 200 OK responses.

Implementation

Response.Ok([String? body]) : this(HttpStatus.ok, body: body);