hasPath method

bool hasPath(
  1. String distroName
)

Check if distro has path in settings

Implementation

bool hasPath(String distroName) {
  return prefs.getString('Path_$distroName') != null ? true : false;
}