isValidEmailAddress static method

bool isValidEmailAddress(
  1. String? value
)

Implementation

static bool isValidEmailAddress(String? value) {
  if (value == null) {
    return true;
  }
  RegExp r = new RegExp(emailMatcher);
  return r.hasMatch(value);
}