e static method

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

e : error Error logs indicating errors that occurred during execution.

Implementation

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