static Set _create()

in lib/src/path_set.dart [30:40]


  static Set<String?> _create(p.Context? context) {
    context ??= p.context;
    return LinkedHashSet(
        equals: (path1, path2) {
          if (path1 == null) return path2 == null;
          if (path2 == null) return false;
          return context!.equals(path1, path2);
        },
        hashCode: (path) => path == null ? 0 : context!.hash(path),
        isValidKey: (path) => path is String || path == null);
  }