bold method

void bold([
  1. bool enable = true
])

Implementation

void bold([bool enable = true]) {
  if (enable == true) _textModel.fontWeight = FontWeight.bold;
}