underline static method
Returns a underline text
final str = Md.underline('Hello world');
Implementation
static String underline (dynamic value) => '__${value}__';
Returns a underline text
final str = Md.underline('Hello world');
static String underline (dynamic value) => '__${value}__';