UpgraderException constructor

const UpgraderException({
  1. required UpdateCheckFailureType type,
  2. required String message,
  3. Object? cause,
  4. int? statusCode,
})

Implementation

const UpgraderException({
  required this.type,
  required this.message,
  this.cause,
  this.statusCode,
});