Normalizes the given name by trimming and converting it to lowercase.
name
@protected String normalizeName(String name) => name.trim().toLowerCase();