HttpException constructor

HttpException(
  1. int statusCode,
  2. String message, [
  3. Map<String, dynamic>? details
])

Creates a new HttpException with the given statusCode and message.

Implementation

HttpException(this.statusCode, this.message, [this.details]);