isEmail function

bool isEmail(
  1. String str
)

Returns true if str matches the RFC 5322 email format heuristic.

Implementation

bool isEmail(String str) => emailReg.hasMatch(str.toLowerCase());