subject property

  1. @visibleForTesting
  2. @protected
BehaviorSubject<T> get subject

Implementation

@visibleForTesting
@protected
BehaviorSubject<T> get subject =>
    _subject ??= BehaviorSubject<T>.seeded(initValue);