LogEntry class
Constructors
- LogEntry.new({required String encryptedMessage, required DateTime timestamp})
-
LogEntry.fromJson(Map<
String, dynamic> json) -
factory
Properties
- encryptedMessage → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- timestamp → DateTime
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toDomain(
EncryptionService? encryptionService) → Log -
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromDomain(
Log log, EncryptionService? encryptionService) → LogEntry