onRgb16m method

String onRgb16m(
  1. num red,
  2. num green,
  3. num blue
)

Create String with a background color with the specified RGB values (forces using ANSI 16m SGR codes, even if level is not 3).

Implementation

String onRgb16m(num red, num green, num blue) =>
    (_chalk.onRgb16m(red, green, blue))(this);