table method Null safety

void table(
  1. [Object? tabularData,
  2. List<String>? properties]
)

Implementation

void table([Object? tabularData, List<String>? properties]) =>
    _isConsoleDefined
        ? JS('void', 'window.console.table(#, #)', tabularData, properties)
        : null;