hashCode property

  1. @override
int hashCode
override
Serves as a hash function for a particular type.

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