styleBold method

TextStyle styleBold()

Merges bold into whatever the style would have been.

Implementation

TextStyle styleBold() {
  return const TextStyle(fontWeight: FontWeight.bold);
}