email property

RegExp email
final

Matches a valid email address.

Implementation

static final RegExp email = RegExp(
  r'^[a-zA-Z0-9._%+\-]+@[a-zA-Z0-9.\-]+\.[a-zA-Z]{2,}$',
);