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

description

void markTimeline(

  1. Object? arg )

Implementation

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