enableBold method

TextStyle enableBold(
  1. bool enable
)

文本加粗

Implementation

TextStyle enableBold(bool enable) {
  textFormat.enBold = enable;
  return this;
}