YKNetworkException constructor

const YKNetworkException({
  1. YKErrorType type = YKErrorType.unknown,
  2. String? message,
  3. int? statusCode,
  4. dynamic raw,
  5. RetryContext? retryContext,
})

Implementation

const YKNetworkException({
  this.type = YKErrorType.unknown,
  this.message,
  this.statusCode,
  this.raw,
  this.retryContext,
});