info static method

void info(
  1. String msg, {
  2. bool trim = false,
  3. bool newLines = true,
})

Prints info to the console in yellow

Implementation

static void info(
  String msg, {
  bool trim = false,
  bool newLines = true,
}) {
  final sep = newLines ? '\n' : '';
  if (trim) msg = msg.trim();
  msg = _penInfo(msg);
  msg = sep + msg.toString() + sep;
  // ignore: avoid_print
  print(msg);
}