CampoTelefone constructor

const CampoTelefone({
  1. Key? key,
  2. required void onChanged(
    1. String?
    ),
  3. String label = "",
  4. string value = "",
  5. String? validator(
    1. String?
    )?,
})

Implementation

const CampoTelefone({
  super.key,
  required this.onChanged,
  this.label = "",
  this.value = "",
  this.validator,
});