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