ArcRendererConfig<D> constructor

ArcRendererConfig<D>({
  1. String? customRendererId,
  2. double arcLength = 2 * pi,
  3. List<ArcRendererDecorator<D>> arcRendererDecorators = const [],
  4. double? arcRatio,
  5. int? arcWidth,
  6. int layoutPaintOrder = LayoutViewPaintOrder.arc,
  7. int minHoleWidthForCenterContent = 30,
  8. double startAngle = -pi / 2,
  9. double strokeWidthPx = 2.0,
})

Implementation

ArcRendererConfig({
  super.customRendererId,
  super.arcLength,
  super.arcRendererDecorators,
  super.arcRatio,
  super.arcWidth,
  super.layoutPaintOrder,
  super.minHoleWidthForCenterContent,
  super.startAngle,
  super.strokeWidthPx,
});