w method

void w(
  1. dynamic message, [
  2. dynamic title,
  3. LogConfig? config
])

Implementation

void w(dynamic message, [dynamic title, LogConfig? config]) {
  print(message, level: Log.warning, title: title, config: config);
}