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);
// ignore: prefer_interpolation_to_compose_strings
msg = sep + 'ℹ️ '+ msg.toString() + sep;
print(msg);
}