FLUTTER ECOSYSTEM

thiagopereiramartinez/dart-cpfcnpj

An easy-to-use utility for CPF/CNPJ validation and formatting.

dart-cpfcnpj project cover
Stars
18
Forks
10
Last push (UTC)
Mar 12, 2021
Project status
Archived
Thiago P. Martinez GitHub avatar
GITHUB User

Thiago P. Martinez ↗

Programador movido a cafeína.

LanguagesDart

Packages published by this repository

Dependencies used

Dependency list 2 items
  • pedanticDevelopment^1.8.0
  • testDevelopment^1.6.0

Original README

English project snapshot. Visit GitHub for the latest content.

Expand / collapse project README

An easy-to-use utility for CPF/CNPJ validation and formatting.

Usage

A simple usage example:

import 'package:cpfcnpj/cpfcnpj.dart';

main() {
  
  // Validar CPF
  if (CPF.isValid("123.717.730-86")) {
    print("Este CPF é válido.");
  } else {
    print("Este CPF é inválido.");
  }

  // Validar CNPJ
  if (CNPJ.isValid("43.814.971/0001-89")) {
    print("Este CNPJ é válido.");
  } else {
    print("Este CNPJ é inválido.");
  }

  // Formatar CPF
  print(CPF.format("12371773085")); // 123.717.730-85

  // Formatar CNPJ
  print(CNPJ.format("43814971000188")); // 43.814.971/0001-88

}

Features and bugs

Please file feature requests and bugs at the issue tracker.