printInfo method
Prints structured information to the console if isLogEnable is true.
infoThe message text to print.titleA prefix tag/title for the log entry.
Implementation
void printInfo({String? info, String? title}) {
log('$title $info', isError: false);
}