profile method

  1. @DomName('Console.profile')
void profile (String title)

Implementation

@DomName('Console.profile')
void profile(String title) =>
    _isConsoleDefined ? JS('void', 'window.console.profile(#)', title) : null;