Subscription constructor

Subscription({
  1. List<SubscriptionUpdate>? update,
  2. Object? remove,
  3. bool? success,
})

Implementation

Subscription({
  this.update,
  this.remove,
  this.success,
});