logInfo static method
Blue text
Implementation
static void logInfo(String msg, {bool? isLog, bool? execFinalFunc}) {
final String fileInfo = Dev.isLogFileLocation
? '(${StackTrace.current.toString().split('\n')[1].split('/').last}: '
: '';
DevColorizedLog.logCustom(
msg,
enable: Dev.enable,
colorInt: execFinalFunc != null && execFinalFunc
? _exeColorMap[DevLevel.logInf]!
: _logColorMap[DevLevel.logInf]!,
isLog: isLog,
fileInfo: fileInfo,
name: 'logInf',
execFinalFunc: execFinalFunc,
);
}