call method

String? call(
  1. String? input
)

Valid — returns null — if input is a non-blank, well-formed email; otherwise, returns the blank error message if input is null, or the malformed error message if input is malformed.

Implementation

String? call(String? input) => _reqEmail(input);