timeLog method - Console class - dart:html library (original) (raw)

description

void timeLog([

  1. String? label,
  2. Object? arg ])

Implementation

void timeLog([String? label, Object? arg]) =>
    _isConsoleDefined
        ? JS('void', 'window.console.timeLog(#, #)', label, arg)
        : null;