Logger class

Constructors

Logger({bool verbose = false})

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
verbose bool
final

Methods

debug(String message) → void
Prints a debug message if verbose mode is enabled.
error(String message, [dynamic details]) → void
Prints an error message in red.
info(String message) → void
Prints an info message in blue/cyan.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
println(String message) → void
Prints standard output with newline.
success(String message) → void
Prints a success message in green.
toString() String
A string representation of this object.
inherited
warning(String message) → void
Prints a warning message in yellow.
write(String message) → void
Writes standard output without newline.

Operators

operator ==(Object other) bool
The equality operator.
inherited