Console class
The object provides access to the browser's
debugging console (e.g. the Web console in Firefox).
The specifics of how it works varies from browser to browser,
but there is a de facto
set of features that are typically provided.
The object can be accessed from any global object. Window on
browsing scopes and WorkerGlobalScope as specific variants in
workers via the
property console. It's exposed as Window.console
, and can be
referenced as
. For example:
console.log("Failed to open the specified link")
This page documents the Methods available on the object and gives a few Usage examples.
Note: This feature is available in Web Workers
- Available extensions
- Annotations
-
- @JS('console')
- @staticInterop
Constructors
- Console()
-
factory
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited