parametersToEnable property

Set<SGRParameter> get parametersToEnable

Implementation

Set<SGRParameter> get parametersToEnable => {
      if (bold == true) SGRParameter.bold,
      if (italic == true) SGRParameter.italic,
      if (underline == true) SGRParameter.underline,
      if (faint == true) SGRParameter.faint,
      if (blink == true) SGRParameter.blink,
      if (blinkRapid == true) SGRParameter.blinkRapid,
      if (inverse == true) SGRParameter.inverse,
      if (hide == true) SGRParameter.hide,
      if (strikeThrough == true) SGRParameter.strikeThrough,
      if (overline == true) SGRParameter.overline,
      ...customEnable,
    };