nft function

Future nft(
  1. String projectDir, {
  2. int size = -1,
  3. DrawBase? drawServiceBase,
  4. bool crunchLayersForces = false,
})

Runs NFT image generation based on metadata

Implementation

Future<dynamic> nft(String projectDir,
        {int size = -1,
        DrawBase? drawServiceBase,
        bool crunchLayersForces = false}) async =>
    await main([
      "nft",
      "-f",
      projectDir,
      '-s',
      size.toString(),
      "--crunch-layers-forced",
      crunchLayersForces.toString(),
      "--no-kill"
    ], drawServiceBase);