w static method

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

w : warning Warning logs signaling potential issues that may not impact the app's execution.

Implementation

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