RequestEntityTooLargeHttpException constructor

const RequestEntityTooLargeHttpException({
  1. String detail = '',
  2. Map<String, dynamic>? data,
  3. Uri? uri,
})

413 Request Entity Too Large (Http Exception).

Implementation

const RequestEntityTooLargeHttpException({
  super.detail = '',
  super.data,
  super.uri,
}) : super(httpStatus: HttpStatus.requestEntityTooLarge);