static bool isLetterOrDigital(String? text) => isNotEmpty(text) && regexLetterOrDigital.hasMatch(text!);