Subscriber constructor

Subscriber({
  1. String? address,
  2. SubscriberStatus? status,
  3. SubscriberType? type,
})

Implementation

Subscriber({
  this.address,
  this.status,
  this.type,
});