CampoTipoPessoa constructor

const CampoTipoPessoa({
  1. Key? key,
  2. required void onChanged(
    1. String?
    ),
  3. String? value,
  4. String? validator(
    1. string?
    )?,
})

Implementation

const CampoTipoPessoa({
  super.key,
  required this.onChanged,
  this.value,
  this.validator,
});