flutterCreate method
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");
}