BDLogRecord class

Logging record.

Annotations
  • @immutable

Constructors

BDLogRecord(BDLevel level, String message, {Object? error, StackTrace? stackTrace, bool isFatal = false})
Create a new Logging record. Logging record's level is required. Logging record's message is required.

Properties

error Object?
Logging record's Error.
final
hashCode int
The hash code for this object.
no setteroverride
isFatal bool
Logging record's error's fatal.
final
level BDLevel
Logging record's logging Level.
final
message String
Logging record's message.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stackTrace StackTrace?
Logging record's stacktrace.
final
time DateTime
Logging record's time of creation.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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