LightSubscription<T> constructor

LightSubscription<T>(
  1. RemoveSubscription<T> _removeSubscription, {
  2. void onPause()?,
  3. void onResume()?,
  4. FutureOr<void> onCancel()?,
})

Implementation

LightSubscription(this._removeSubscription,
    {this.onPause, this.onResume, this.onCancel});