hashCode property
Implementation
@override
int get hashCode {
int hashCode;
if (this.FolderName != null) {
hashCode = this.FolderName.hashCode;
if ((this.Mailbox != null) && this.Mailbox!.IsValid) {
hashCode = hashCode ^ this.Mailbox.hashCode;
}
} else {
hashCode = super.hashCode;
}
return hashCode;
}