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? pathKind,
  7. String? nativeDomain,
  8. int? nativeCode,
  9. String? nativeDescription,
  10. 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.pathKind,
  this.nativeDomain,
  this.nativeCode,
  this.nativeDescription,
  this.underlying,
});