isReserved static method

bool isReserved(
  1. String localPart
)

Checks whether the localPart is a commonly reserved email address. (e.g. postmaster or admin).

Implementation

static bool isReserved(String localPart) => reserved.contains(localPart);