w method

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

Implementation

void w(Object? object, {String? tag}) {
  if (level.index > LogLevel.warning.index) {
    return;
  }
  _print(object ?? '', 'W/' + (tag ?? ''), '33', LogLevel.warning);
}