TautulliLog class

Model to store a Tautulli log record.

Annotations
  • @JsonSerializable(explicitToJson: true)

Constructors

TautulliLog({String? timestamp, String? level, String? message, String? thread})
TautulliLog.fromJson(Map<String, dynamic> json)
Deserialize a JSON map to a TautulliLog object.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
level String?
The log level.
final
message String?
The log message.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
thread String?
The thread the log was recorded on.
final
timestamp String?
The date and time of the log.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serialize a TautulliLog object to a JSON map.
toString() String
Returns a JSON-encoded string version of this object.
override

Operators

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