MessageGiftedPremium constructor

const MessageGiftedPremium({
  1. required int gifterUserId,
  2. required String currency,
  3. required int amount,
  4. required String cryptocurrency,
  5. required int cryptocurrencyAmount,
  6. required int monthCount,
  7. Sticker? sticker,
})

Telegram Premium was gifted to the user

Implementation

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