originalError property

Object? get originalError

Get the original error (unwrapped from RxException if applicable)

Implementation

Object? get originalError {
  RxTracking.track(this);
  final err = value.error;
  if (err is RxException) {
    return err.originalError;
  }
  return err;
}