format method
Implementation
String format() {
if (pos.isEmpty) {
return "/";
} else {
return pos.map((p) {
if (p.hasIndex()) {
return "/${p.index}";
} else {
return "/${p.key}";
}
}).join();
}
}
String format() {
if (pos.isEmpty) {
return "/";
} else {
return pos.map((p) {
if (p.hasIndex()) {
return "/${p.index}";
} else {
return "/${p.key}";
}
}).join();
}
}