obterDDD static method
Implementation
static String obterDDD(String telefone) {
assert((telefone.length == 14 || telefone.length == 15),
'Telefone com tamanho inválido. Deve conter 14 ou 15 caracteres');
return telefone.substring(1, 3);
}