cleanString method
dynamic
cleanString()
Implementation
cleanString() {
if (this.isEmpty) {
return this;
}
return this.toLowerCase().replaceAll(' ', '_');
}
cleanString() {
if (this.isEmpty) {
return this;
}
return this.toLowerCase().replaceAll(' ', '_');
}