MessageActionGiftStars constructor

const MessageActionGiftStars({
  1. required String currency,
  2. required int amount,
  3. required int stars,
  4. String? cryptoCurrency,
  5. int? cryptoAmount,
  6. String? transactionId,
})

Message Action Gift Stars constructor.

Implementation

const MessageActionGiftStars({
  required this.currency,
  required this.amount,
  required this.stars,
  this.cryptoCurrency,
  this.cryptoAmount,
  this.transactionId,
}) : super._();