parseMarkdownBold static method

String parseMarkdownBold(
  1. String text
)

Implementation

static String parseMarkdownBold(String text) {
  return "**${text}**";
}