bold static method
Returns a bold text
final str = Md.bold('Hello world');
Implementation
static String bold (dynamic value) => '**$value**';
Returns a bold text
final str = Md.bold('Hello world');
static String bold (dynamic value) => '**$value**';