alphaNumeric static method

Validator alphaNumeric({
  1. String? message,
})

Ensures the value contains only alphanumeric characters.

Implementation

static Validator alphaNumeric({String? message}) =>
    Validator._()..alphaNumeric(message: message);