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

description

void error(

  1. Object? arg )

Implementation

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