contemNumero method

bool contemNumero()

Implementation

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

  return this!.contains(RegExp(r'[0-9]'));
}