rxError property

RxException? get rxError

Get error as RxException if available

Implementation

RxException? get rxError {
  RxTracking.track(this);
  final err = value.error;
  return err is RxException ? err : null;
}