isInServerPodProject static method

bool isInServerPodProject({
  1. String? currentPath,
})

Check if we're in a valid ServerPod project

Implementation

static bool isInServerPodProject({String? currentPath}) {
  final project = getProject(currentPath: currentPath);
  return project?.isValid ?? false;
}