SyncClientError constructor

  1. @Deprecated("SyncClientError constructor is deprecated and will be removed in the future")
SyncClientError(
  1. String message,
  2. SyncErrorCategory category,
  3. SyncClientErrorCode errorCode, {
  4. String? detailedMessage,
  5. bool isFatal = false,
})

Implementation

@Deprecated("SyncClientError constructor is deprecated and will be removed in the future")
SyncClientError(
  String message,
  SyncErrorCategory category,
  SyncClientErrorCode errorCode, {
  String? detailedMessage,
  this.isFatal = false,
}) : super(message, category, errorCode.code, detailedMessage: detailedMessage);