bold function

String bold(
  1. String content
)

Wraps the content inside **.

Implementation

String bold(String content) => '**$content**';