fullNameHash property

int get fullNameHash

Implementation

int get fullNameHash => (firstName.withoutAccents.toLowerCase().trim() +
        lastName.withoutAccents.toLowerCase().trim())
    .hashCode;