OffChainMetadata constructor

const OffChainMetadata({
  1. required String name,
  2. required String description,
  3. required String symbol,
  4. required String image,
  5. required Properties properties,
  6. required List<Attribute> attributes,
  7. required Collection? collection,
})

Implementation

const OffChainMetadata({
  required this.name,
  required this.description,
  required this.symbol,
  required this.image,
  required this.properties,
  required this.attributes,
  required this.collection,
});