Single<T>.safe constructor

  1. @internal
Single<T>.safe(
  1. Stream<T> source
)

@internal DO NOT USE this constructor.

Implementation

@internal
Single.safe(Stream<T> source)
    : _stream = source,
      assert(source is! Single<T>),
      super(source);