emailRegex property

RegExp emailRegex
final

Regular expressions for common PII patterns.

Implementation

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