SegmentedWrapper constructor

const SegmentedWrapper({
  1. EdgeInsets? margin,
  2. EdgeInsets padding = const EdgeInsets.all(8),
  3. double borderRadius = 12,
  4. Color? backgroundColor,
  5. Color? selectedColor,
  6. bool isSelected = false,
})

Implementation

const SegmentedWrapper({
  this.margin,
  this.padding = const EdgeInsets.all(8),
  this.borderRadius = 12,
  this.backgroundColor,
  this.selectedColor,
  this.isSelected = false,
});