PackSet constructor

const PackSet({
  1. required NFTPacksAccountType accountType,
  2. required SolAddress store,
  3. required SolAddress authority,
  4. required String description,
  5. required String uri,
  6. required List<int> name,
  7. required int packCards,
  8. required int packVouchers,
  9. required BigInt totalWeight,
  10. required BigInt totalEditions,
  11. required bool mutable,
  12. required PackSetState packState,
  13. required PackDistributionType distributionType,
  14. required int allowedAmountToRedeem,
  15. required BigInt redeemStartDate,
  16. BigInt? redeemEndDate,
})

Implementation

const PackSet(
    {required this.accountType,
    required this.store,
    required this.authority,
    required this.description,
    required this.uri,
    required this.name,
    required this.packCards,
    required this.packVouchers,
    required this.totalWeight,
    required this.totalEditions,
    required this.mutable,
    required this.packState,
    required this.distributionType,
    required this.allowedAmountToRedeem,
    required this.redeemStartDate,
    this.redeemEndDate});