SparkSelect constructor

const SparkSelect({
  1. Key? key,
  2. required FormGroupItem manage,
  3. required List<SparkSelectOption> options,
  4. ItemValueBuilder? itemBuilder,
  5. double? itemSpacing,
  6. Size? itemSize,
  7. SparkSelectDecoration? selectedDecoration,
  8. SparkSelectDecoration? unSelectedDecoration,
  9. WrapAlignment? alignment,
  10. bool enabled = true,
})

Implementation

const SparkSelect({
  Key? key,
  required FormGroupItem manage,
  required this.options,
  this.itemBuilder,
  this.itemSpacing,
  this.itemSize,
  this.selectedDecoration,
  this.unSelectedDecoration,
  this.alignment,
  bool enabled = true,
}) : super(key: key, manage: manage, enabled: enabled);