SyncError constructor
- @Deprecated("SyncError constructor is deprecated and will be removed in the future")
- String message,
- SyncErrorCategory category,
- int codeValue, {
- String? detailedMessage,
Implementation
@Deprecated("SyncError constructor is deprecated and will be removed in the future")
SyncError(String message, this.category, int codeValue, {this.detailedMessage})
: code = SyncErrorCode.fromInt(codeValue),
innerError = null,
super(message);