w static method

void w(
  1. String tag,
  2. dynamic message
)

Implementation

static void w(String tag, dynamic message) {
  if (level <= LogLevel.w) {
    print('${_formatTag('W:$tag')}||$message');
  }
}