MetaData constructor

const MetaData({
  1. required String name,
  2. required String symbol,
  3. required String uri,
  4. required int sellerFeeBasisPoints,
  5. required bool primarySaleHappened,
  6. required bool isMutable,
  7. required int? editionNonce,
  8. required TokenStandard? tokenStandard,
  9. required Collection? collection,
  10. required Uses? uses,
  11. required TokenProgramVersion tokenProgramVersion,
  12. required List<Creator> creators,
})

Implementation

const MetaData(
    {required this.name,
    required this.symbol,
    required this.uri,
    required this.sellerFeeBasisPoints,
    required this.primarySaleHappened,
    required this.isMutable,
    required this.editionNonce,
    required this.tokenStandard,
    required this.collection,
    required this.uses,
    required this.tokenProgramVersion,
    required this.creators});