Fork from, cnpj_cpf_formatter, to null safety.

This library helps with CNPJ and CPF formatter. Both of them are brazilian a documentation where CNPJ is a business document and CPF is a person document.

Usage

A simple usage example:

CPF formatter

    TextField(
        decoration: InputDecoration(
        labelText: 'CPF',
        helperText: 'just CPF formatting',
        ),
        inputFormatters: [
        CnpjCpfFormatter(
            eDocumentType: EDocumentType.CPF,
        )
        ],
    )

CNPJ formatter

    TextField(
        decoration: InputDecoration(
        labelText: 'CNPJ',
        helperText: 'just CNPJ formatting',
        ),
        inputFormatters: [
        CnpjCpfFormatter(
            eDocumentType: EDocumentType.CNPJ,
        )
        ],
    )

CNPJ and CPF formatters in same field

    TextField(
        decoration: InputDecoration(
        labelText: 'CNPJ/CPF',
        helperText: 'CNPJ and CPF formatting',
        ),
        inputFormatters: [
        CnpjCpfFormatter(
            eDocumentType: EDocumentType.BOTH,
        )
        ],
    )

Features and bugs

Please file feature requests and bugs at the issue tracker.