scrumlab_cpfcnpj 2.0.3 copy "scrumlab_cpfcnpj: ^2.0.3" to clipboard
scrumlab_cpfcnpj: ^2.0.3 copied to clipboard

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

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

Usage #

A simple usage example:

import 'package:scrumlab-cpfcnpj/scrumlab-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.

0
likes
140
points
24
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

MIT (license)

More

Packages that depend on scrumlab_cpfcnpj