Returns true if the length of name is between 1 and 32 characters (inclusive).
true
name
static bool isValidName(String name) => name.isNotEmpty && name.length <= 32;