Validate Alphanumeric
static bool alphanumeric(String value) { return new RegExp(_ALPHANUMERIC_PATTERN).hasMatch(value); }