WheelOverlayEntryContent constructor

const WheelOverlayEntryContent({
  1. Key? key,
  2. required List<List<Color>> colors,
  3. required void onSelect(
    1. Color
    ),
  4. required double pieceHeight,
  5. required AnimationController animationController,
  6. double pieceBorderSize = 0,
  7. Function? hideOverlay,
  8. Alignment alignment = Alignment.topLeft,
  9. double padding = 0,
  10. double innerRadius = 0,
  11. FanAnimationConfig animationConfig = const FanAnimationConfig(),
  12. LayerLinkConfig layerLinkConfig = const LayerLinkConfig(),
  13. bool debugMode = false,
})

Implementation

const WheelOverlayEntryContent({
  Key? key,
  required this.colors,
  required this.onSelect,
  required this.pieceHeight,
  required this.animationController,
  this.pieceBorderSize = 0,
  this.hideOverlay,
  this.alignment=Alignment.topLeft,
  this.padding = 0,
  this.innerRadius = 0,
  this.animationConfig = const FanAnimationConfig(),
  this.layerLinkConfig=const LayerLinkConfig(),
  this.debugMode = false,
}) : super(key: key);