printInfo function

void printInfo(
  1. Object? object, [
  2. String end = "\n"
])

Implementation

void printInfo(Object? object, [String end = "\n"]) {
  final msg = _getMsg(infoColor, "INFO", object);
  printOut(msg, end);
}