email method

ValidationBuilder email([
  1. String? message
])

Value must be a well formatted email

Implementation

ValidationBuilder email([String? message]) => add((v) =>
    _options.emailRegExp.hasMatch(v!) ? null : message ?? _locale.email(v));