email method
Value must be a well formatted email
Implementation
ValidationBuilder email([String? message]) => add((v) => _options.emailRegExp.hasMatch(v!) ? null : message ?? 'Invalid email format.');
Value must be a well formatted email
ValidationBuilder email([String? message]) => add((v) => _options.emailRegExp.hasMatch(v!) ? null : message ?? 'Invalid email format.');