table method - Console class - dart:html library (original) (raw)
void table([
Implementation
void table([Object? tabularData, List<String>? properties]) =>
_isConsoleDefined
? JS('void', 'window.console.table(#, #)', tabularData, properties)
: null;