DraftModeUISegmentedControl<T extends Object> constructor

const DraftModeUISegmentedControl<T extends Object>({
  1. Key? key,
  2. required Map<T, Widget> children,
  3. T? groupValue,
  4. ValueChanged<T?>? onValueChanged,
  5. Color? backgroundColor,
  6. Color? thumbColor,
  7. EdgeInsetsGeometry? padding,
  8. Set<T>? disabledChildren,
})

Implementation

const DraftModeUISegmentedControl({
  super.key,
  required this.children,
  this.groupValue,
  this.onValueChanged,
  this.backgroundColor,
  this.thumbColor,
  this.padding,
  this.disabledChildren,
});