ClientResetError constructor

  1. @Deprecated("ClientResetError constructor is deprecated and will be removed in the future")
ClientResetError(
  1. String message,
  2. App? _app, {
  3. SyncErrorCategory category = SyncErrorCategory.client,
  4. int? errorCodeValue,
  5. String? backupFilePath,
  6. String? originalFilePath,
  7. String? detailedMessage,
})

Implementation

@Deprecated("ClientResetError constructor is deprecated and will be removed in the future")
ClientResetError(
  String message,
  this._app, {
  SyncErrorCategory category = SyncErrorCategory.client,
  int? errorCodeValue,
  this.backupFilePath,
  this.originalFilePath,
  String? detailedMessage,
}) : super(
        message,
        category,
        errorCodeValue ?? SyncClientErrorCode.autoClientResetFailure.code,
        detailedMessage: detailedMessage,
      );