writeBold method

void writeBold(
  1. String string
)

Implementation

void writeBold(String string) {
  write('**');
  write(string);
  write('**');
}