ClientResetError constructor 
    
      
  
    
        - @Deprecated("ClientResetError constructor is deprecated and will be removed in the future")
 
      ClientResetError(
 - String message, 
- App? _app, {
- SyncErrorCategory category = SyncErrorCategory.client, 
- int? errorCodeValue, 
- String? backupFilePath, 
- String? originalFilePath, 
- 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,
      );