contemCaracterEspecial method

bool contemCaracterEspecial()

Implementation

bool contemCaracterEspecial() {
  if (this == null) return false;

  return this!.contains(RegExp(r'[!@#$%^&*(),.?":{}|<>]'));
}