Combo constructor

const Combo({
  1. Key? key,
  2. required dynamic onChange(
    1. String value
    ),
  3. required List<ComboData> data,
  4. required String value,
  5. required String text,
  6. bool inRow = false,
})

Implementation

const Combo({Key? key, required this.onChange,
  required this.data, required this.value, required this.text, this.inRow = false}) : super(key: key);