count method - Console class - dart:html library (original) (raw)

description

void count([

  1. Object? arg ])

Implementation

void count([Object? arg]) =>
    _isConsoleDefined ? JS('void', 'window.console.count(#)', arg) : null;