SubscriberFeedResponse constructor

SubscriberFeedResponse({
  1. required String id,
  2. String? firstName,
  3. String? lastName,
  4. String? avatar,
  5. required String? subscriberId,
})

Implementation

SubscriberFeedResponse({
  required this.id,
  this.firstName,
  this.lastName,
  this.avatar,
  required this.subscriberId,
});