write static method

void write(
  1. String text, {
  2. bool newLine = false,
  3. bool overwrite = false,
})

Write text to the console, You can use styling extension like .withColor() and .withAlignment()

Implementation

static void write(String text,
        {bool newLine = false, bool overwrite = false}) =>
    writeImpl(text, newLine: newLine, overwrite: overwrite);