HttpVersionNotSupportedHttpException constructor

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

505 Http Version Not Supported (Http Exception).

Implementation

const HttpVersionNotSupportedHttpException({
  String detail = '',
  Map<String, dynamic>? data,
  Uri? uri,
}) : super(
        httpStatus: HttpStatus.httpVersionNotSupported,
        detail: detail,
        data: data,
        uri: uri,
      );