SyncHttpException constructor

const SyncHttpException({
  1. required String message,
  2. int? statusCode,
  3. dynamic response,
  4. required SyncHttpExceptionType type,
})

Implementation

const SyncHttpException({
  required this.message,
  this.statusCode,
  this.response,
  required this.type,
});