DebugLogger class

A Wrapper class that exposes various debugging methods that are used to output messages to the debug console

It is built ontop of the package logger.

These debugging methods include:

  1. => debug() => Used to print message with color white to console

  2. => info() => Used to print message with color cyan to console

  3. => warning() => Used to print message with color yellow/orange to console

  4. => error() => Used to print message with color red to console

Constructors

DebugLogger()
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

Static Methods

debug(dynamic message) → void
error(dynamic message) → void
info(dynamic message) → void
warning(dynamic message) → void