CnpjCpfField constructor

const CnpjCpfField({
  1. Key? key,
  2. required void onChanged(
    1. String?
    ),
  3. bool readOnly = false,
  4. string? label,
  5. string? value,
})

Implementation

const CnpjCpfField({
  super.key,
  required this.onChanged,
  this.readOnly = false,
  this.label,
  this.value,
});