BodyParserException constructor

BodyParserException({
  1. int statusCode = 400,
  2. Object? response = 'Bad Request',
  3. required Object exception,
  4. required StackTrace stacktrace,
})

HyperioAzkadevUncompleteDocumentation

Implementation

BodyParserException(
    {this.statusCode = 400,
    this.response = 'Bad Request',
    required this.exception,
    required this.stacktrace});