alpha static method

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

Ensures the value contains only alphabetic characters.

Implementation

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