operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

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;
}