operator == method
Checks if two AppWindowDto objects are equal.
Implementation
@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
if (other is! AppWindowDto) return false;
return other.appName == appName && other.windowTitle == windowTitle;
}