Response.NotFound constructor

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

Constructor for 404 not found responses.

Implementation

Response.NotFound([String? body]) : this(HttpStatus.notFound, body: body);