w static method

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

Implementation

static void w(Object? object, {String? tag}) {
  defaultLogger.w(
    object,
    tag: tag,
  );
}