logInfo static method

void logInfo(
  1. String msg, {
  2. bool? isLog,
  3. bool? execFinalFunc,
})

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,
  );
}