AvailableGift constructor

AvailableGift({
  1. Gift? gift,
  2. required int resaleCount,
  3. required int minResaleStarCount,
  4. required String title,
})

Implementation

AvailableGift({
  this.gift,
  required this.resaleCount,
  required this.minResaleStarCount,
  required this.title,
});