StarsTopupOption constructor

const StarsTopupOption({
  1. required bool extended,
  2. required int stars,
  3. String? storeProduct,
  4. required String currency,
  5. required int amount,
})

Stars Topup Option constructor.

Implementation

const StarsTopupOption({
  required this.extended,
  required this.stars,
  this.storeProduct,
  required this.currency,
  required this.amount,
}) : super._();