MessageGiftedPremium constructor

MessageGiftedPremium({
  1. required int gifterUserId,
  2. required int receiverUserId,
  3. FormattedText? text,
  4. required String currency,
  5. required int amount,
  6. required String cryptocurrency,
  7. required int cryptocurrencyAmount,
  8. required int monthCount,
  9. required int dayCount,
  10. Sticker? sticker,
})

Implementation

MessageGiftedPremium({
  required this.gifterUserId,
  required this.receiverUserId,
  this.text,
  required this.currency,
  required this.amount,
  required this.cryptocurrency,
  required this.cryptocurrencyAmount,
  required this.monthCount,
  required this.dayCount,
  this.sticker,
});