HttpStatusException constructor
const
HttpStatusException({})
Implementation
const HttpStatusException({
required this.statusCode,
required String message, // 1. Accept message as a regular named parameter
this.responseBody,
super.cause, // 2. This works because 'cause' is named in the superclass
}) : super(message);