static Cpf fromString(String cpf) { if (!isValid(cpf)) { throw FormatException( 'Failed creating Cpf instance due to valid string.'); } return Cpf._(cpf); }