ServerException constructor

const ServerException({
  1. Response? parsedResponse,
  2. int? statusCode,
  3. Object? originalException,
  4. StackTrace? originalStackTrace,
})

Implementation

const ServerException({
  this.parsedResponse,
  this.statusCode,
  Object? originalException,
  StackTrace? originalStackTrace,
}) : super(originalException, originalStackTrace);