apply method Null safety

String apply(
  1. String text,
  2. {AnsiColor background = none}
)

writes the text to the terminal.

Implementation

String apply(String text, {AnsiColor background = none}) =>
    _apply(this, text, background: background);