PaymentsStarsStatus constructor

const PaymentsStarsStatus({
  1. required StarsAmountBase balance,
  2. List<StarsSubscriptionBase>? subscriptions,
  3. String? subscriptionsNextOffset,
  4. int? subscriptionsMissingBalance,
  5. List<StarsTransactionBase>? history,
  6. String? nextOffset,
  7. required List<ChatBase> chats,
  8. required List<UserBase> users,
})

Payments Stars Status constructor.

Implementation

const PaymentsStarsStatus({
  required this.balance,
  this.subscriptions,
  this.subscriptionsNextOffset,
  this.subscriptionsMissingBalance,
  this.history,
  this.nextOffset,
  required this.chats,
  required this.users,
}) : super._();