flutterCreate method

Future<void> flutterCreate({
  1. required String projectName,
  2. required String org,
})

Implementation

Future<void> flutterCreate(
    {required String projectName, required String org}) async {
  blueLog("Project creating.....");
  await run('flutter create $projectName --no-pub --org $org');
  greenLog("🚀🚀 Successfully created project");
  print(
      "Use the cd command in the terminal to navigate to the project's root directory.");
  blueLog("   \$ cd $projectName");
  print(
      "To initialize your project with well-structured architecture, run the following command");
  blueLog("   \$ easy init");
}