HTTPSException constructor

HTTPSException({
  1. required String message,
  2. int? statusCode,
  3. Object? originalError,
  4. StackTrace? stackTrace,
})

Implementation

HTTPSException({
  required this.message,
  this.statusCode,
  this.originalError,
  this.stackTrace,
});