Dart
dart:html
Console
time method
description
time method
void
time
(
String
title
)
Implementation
void
time(
String
title) => _isConsoleDefined ? JS(
'void'
,
'window.console.time(#)'
, title) :
null
;