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