alphanumeric method Null safety
Checks if the value is alphanumeric, i.e., contains only letters and numbers.
Implementation
static String? alphanumeric(String? value, {String? message}) =>
value == null || value.isEmpty || validations.isAlphanumeric(value) ? null : message ?? 'Please enter only alphabets and numbers';