Colorize constructor

Colorize({
  1. AnsiColor? foreground,
  2. AnsiColor? background,
  3. AnsiColor? bright,
  4. bool reverse = false,
  5. bool underline = false,
})

Creates Colorize class with defined styles.

Implementation

Colorize(
    {this.foreground,
    this.background,
    this.bright,
    this.reverse = false,
    this.underline = false});