SendGift constructor

SendGift({
  1. required int giftId,
  2. MessageSender? ownerId,
  3. FormattedText? text,
  4. required bool isPrivate,
  5. required bool payForUpgrade,
})

Implementation

SendGift({
  required this.giftId,
  this.ownerId,
  this.text,
  required this.isPrivate,
  required this.payForUpgrade,
});