Subscriber constructor

Subscriber({
  1. String? createTime,
  2. EndpointAuthorization? endpointAuthorization,
  3. String? endpointUri,
  4. String? name,
  5. String? state,
  6. List<SubscriberConfig>? subscriberConfigs,
  7. String? updateTime,
})

Implementation

Subscriber({
  this.createTime,
  this.endpointAuthorization,
  this.endpointUri,
  this.name,
  this.state,
  this.subscriberConfigs,
  this.updateTime,
});