create method
Creates a new project with the given name.
Implementation
@override
void create(String name) async {
this.name = name;
await initializeFlutterProject();
_createProfile();
_createProjectFolders();
_createSrcFiles();
_updateTest();
await addFlameDependency();
}