ChoiceField constructor

ChoiceField({
  1. double width = 120,
  2. double height = 13,
  3. TextStyle? textStyle,
  4. required String name,
  5. required List<String> items,
  6. String? value,
})

Implementation

ChoiceField({
  this.width = 120,
  this.height = 13,
  this.textStyle,
  required this.name,
  required this.items,
  this.value,
});