paramNotFound method

dynamic paramNotFound(
  1. String key
)

Implementation

paramNotFound(String key) {
  request.response
    ..statusCode = HttpStatus.notAcceptable
    ..write('Unsupported request param: $key.')
    ..close();
}