underline method
Implementation
Widget underline() {
if (this is UnderlineText) {
return this;
}
return UnderlineText(child: this);
}
Widget underline() {
if (this is UnderlineText) {
return this;
}
return UnderlineText(child: this);
}