ProjectModel constructor

ProjectModel(
  1. String name,
  2. String cidCode,
  3. int generateNfts,
  4. List<ProjectLayerModel> layers,
  5. Directory metaDir,
  6. Directory layerDir,
  7. Directory layerCrunchDir,
  8. Directory imageDir,
  9. Directory rarityDir,
  10. File rarityNftCsv,
  11. File rarityLayersCsv,
  12. File rarityNftPng,
  13. File rarityLayersPng,
)

Constructor.

Implementation

ProjectModel(
    this.name,
    this.cidCode,
    this.generateNfts,
    // this.weightsFactor,
    this.layers,
    //
    this.metaDir,
    this.layerDir,
    this.layerCrunchDir,
    this.imageDir,
    this.rarityDir,
    this.rarityNftCsv,
    this.rarityLayersCsv,
    this.rarityNftPng,
    this.rarityLayersPng);