info static method

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

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;
  print(msg);
}