ICreateCollection constructor

ICreateCollection({
  1. required String name,
  2. required String symbol,
  3. required String baseUri,
  4. required String baseExtension,
  5. required bool isRevokable,
  6. required bool isSoulbound,
  7. required String royaltiesAddress,
  8. required int royaltiesFees,
  9. required bool drop,
  10. int? maxSupply,
  11. String? description,
  12. CollectionType? collectionType1,
  13. EvmChain? chain1,
  14. bool? isAutoIncrement,
})

Implementation

ICreateCollection(
    {required this.name,
    required this.symbol,
    required this.baseUri,
    required this.baseExtension,
    required this.isRevokable,
    required this.isSoulbound,
    required this.royaltiesAddress,
    required this.royaltiesFees,
    required this.drop,
    this.maxSupply,
    this.description,
    this.collectionType1,
    this.chain1,
    this.isAutoIncrement});