StarSubscriptions constructor

StarSubscriptions({
  1. StarAmount? starAmount,
  2. required List<StarSubscription> subscriptions,
  3. required int requiredStarCount,
  4. required String nextOffset,
})

Implementation

StarSubscriptions({
  this.starAmount,
  required this.subscriptions,
  required this.requiredStarCount,
  required this.nextOffset,
});