printInfo method

void printInfo({
  1. String? info,
  2. String? title,
})

Prints structured information to the console if isLogEnable is true.

  • info The message text to print.
  • title A prefix tag/title for the log entry.

Implementation

void printInfo({String? info, String? title}) {
  log('$title $info', isError: false);
}