ICloudOperationException constructor

const ICloudOperationException({
  1. required String category,
  2. required String operation,
  3. required bool retryable,
  4. required String message,
  5. String? relativePath,
  6. String? nativeDomain,
  7. int? nativeCode,
  8. String? nativeDescription,
  9. Object? underlying,
})

Creates a typed iCloud operation exception.

Implementation

const ICloudOperationException({
  required this.category,
  required this.operation,
  required this.retryable,
  required this.message,
  this.relativePath,
  this.nativeDomain,
  this.nativeCode,
  this.nativeDescription,
  this.underlying,
});