isEmail function

bool isEmail(
  1. String str
)

Check if string is a valid email.

Implementation

bool isEmail(String str) => _isEmail(str);