consoleError static method
- Object? object
Prints a string representation of the provided object
to the console as
an error.
Implementation
static void consoleError(Object? object) =>
web.console.error(object?.toString().toJS);
Prints a string representation of the provided object
to the console as
an error.
static void consoleError(Object? object) =>
web.console.error(object?.toString().toJS);