ResponseEntity.internalServerError constructor
Implementation
ResponseEntity.internalServerError({
Object? body,
Map<String, /* String | List<String> */ Object>? headers,
}) : this(
HttpStatus.internalServerError.value,
body: body ?? 'Internal Server Error',
headers: headers,
);