i static method

void i(
  1. String message, {
  2. String tag = "",
  3. bool path = false,
})

i : information Informational logs indicating the app's execution state.

Implementation

static void i(String message, {String tag = "", bool path = false}) => debugPrint(LogExtension.convert(tag: tag, message: message, logType: LogType.information, path: path));