operator == method
Checks if this InfospectLog
object is equal to another object.
Implementation
@override
bool operator ==(Object other) {
return other is InfospectLog &&
level == other.level &&
timestamp == other.timestamp &&
message == other.message &&
error == other.error &&
stackTrace == other.stackTrace;
}