isValid static method

bool isValid(
  1. String? cep
)

Implementation

static bool isValid(String? cep) {
  if (cep == null || cep.isEmpty) return false;

  String cepSemPontuacao = cep.replaceAll('.', '').replaceAll('-', '');

  return cepSemPontuacao.length == 8;
}