toPathName method
Implementation
String? toPathName() {
if (this == null) return null;
if (!this!.startsWith("/")) {
return "/$this";
} else {
return this;
}
}
String? toPathName() {
if (this == null) return null;
if (!this!.startsWith("/")) {
return "/$this";
} else {
return this;
}
}