w method

void w(
  1. Object? object, {
  2. String? tag,
})

Implementation

void w(Object? object, {String? tag}) {
  if (level.index > LogLevel.warning.index) {
    return;
  }
  String t = tag == null ? 'W' : '$tag';
  _print(object, t, '33', LogLevel.warning);
}