boldStyle static method

String boldStyle(
  1. bool enable
)

Enable/Disable subtitle bold style

Implementation

static String boldStyle(bool enable) {
  return enable ? '--freetype-bold' : '--no-freetype-bold';
}