ComboBanderasWidget constructor

const ComboBanderasWidget({
  1. Key? key,
  2. required Map<String, String> opciones,
  3. String? valorDefecto,
  4. required ValueChanged<String> onSeleccionoOpcion,
  5. required double ancho,
  6. required double alto,
  7. bool desactivarCampo = false,
  8. EdgeInsetsGeometry? contentPadding,
})

Implementation

const ComboBanderasWidget(
    {super.key,
    required this.opciones,
    this.valorDefecto,
    required this.onSeleccionoOpcion,
    required this.ancho,
    required this.alto,
    this.desactivarCampo = false,
    this.contentPadding});