profileExists method

Future<bool> profileExists(
  1. String name
)

Check if a profile exists

Implementation

Future<bool> profileExists(String name) async {
  final file = File(_getProfilePath(name));
  return file.exists();
}