format abstract method

String format(
  1. String cpf
)

This method will format a given CPF, that should be a String

Usage:

final cpf = CPFUtil();
// This will validate a given CPF (Must be a String)
print(cpf.format('35275302827')); // -> '352.753.028-27'

Implementation

String format(String cpf);