Log class

Log is mainly a wrapper for static methods calling dart:developer logging or to stdout/stderr while adding some nice extra's such as datetime stamp and tag string

Constructors

Log()

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

d(String tag, String mesg) → void
debug level message
e(String mesg, [Object? error, StackTrace? stackTrace]) → void
error level message
i(String tag, String mesg) → void
info level message
init([bool? useStd]) → void
initialise the logging output
w(String tag, String mesg, {Object? data}) → void
warning level message

Constants

initMesg → const String