info static method
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);
}
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);
}