timeLog method - Console class - dart:html library (original) (raw)
void timeLog([
Implementation
void timeLog([String? label, Object? arg]) =>
_isConsoleDefined
? JS('void', 'window.console.timeLog(#, #)', label, arg)
: null;
void timeLog([
void timeLog([String? label, Object? arg]) =>
_isConsoleDefined
? JS('void', 'window.console.timeLog(#, #)', label, arg)
: null;