SyncSessionError constructor

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

Implementation

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