flutterSdkSymlink function

String flutterSdkSymlink()

Create an empty folder for flutter sdk symlink

Implementation

String flutterSdkSymlink() {
  final flutterPath = Directory(
    "${SidekickContext.sidekickPackage.buildDir.absolute.path}/flutter",
  );
  flutterPath.createSync(recursive: true);
  return flutterPath.absolute.path;
}