ReadOnlyRx<T> constructor

ReadOnlyRx<T>(
  1. SwiftValue<T> _swift
)

Implementation

ReadOnlyRx(this._swift) {
  // Forward notifications from the underlying SwiftValue
  _swift.addListener(notifyListeners);
}