ResponseEntity.notFound constructor
Implementation
ResponseEntity.notFound({
Object? body,
Map<String, /* String | List<String> */ Object>? headers,
}) : this(
HttpStatus.notFound.value,
body: body ?? 'Not found',
headers: headers,
);