writeLine method

void writeLine(
  1. String? message, {
  2. SimpleColor? foregroundColor,
})

Implementation

void writeLine(
  String? message, {
  SimpleColor? foregroundColor,
}) {
  _write(
    write: _stdout.writeln,
    object: message,
    foregroundColor: foregroundColor,
    backgroundColor: null,
  );
}