toHyphenCase method
Implementation
String toHyphenCase() {
final replaced = this.replaceAll(" ", "-");
return replaced
.split("-")
.map((s) {
return s.toLowerCase();
})
.toList()
.join("-");
}
String toHyphenCase() {
final replaced = this.replaceAll(" ", "-");
return replaced
.split("-")
.map((s) {
return s.toLowerCase();
})
.toList()
.join("-");
}