Log class

Available extensions

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 message, {String tag = "", bool path = false}) → void
d : debug Debugging logs helpful during development, omitted from release builds.
e(String message, {String tag = "", bool path = false}) → void
e : error Error logs indicating errors that occurred during execution.
i(String message, {String tag = "", bool path = false}) → void
i : information Informational logs indicating the app's execution state.
v(String message, {String tag = "", bool path = false}) → void
v : verbose V (Verbose): Lowest priority level used for debugging purposes, providing the most extensive amount of logs.
w(String message, {String tag = "", bool path = false}) → void
w : warning Warning logs signaling potential issues that may not impact the app's execution.