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,
  10. SymbolRenderer? symbolRenderer,
})

Implementation

ArcRendererConfig(
    {String? customRendererId,
    double arcLength = 2 * pi,
    List<ArcRendererDecorator<D>> arcRendererDecorators = const [],
    double? arcRatio,
    int? arcWidth,
    int layoutPaintOrder = LayoutViewPaintOrder.arc,
    int minHoleWidthForCenterContent = 30,
    double startAngle = -pi / 2,
    double strokeWidthPx = 2.0,
    SymbolRenderer? symbolRenderer})
    : super(
          customRendererId: customRendererId,
          arcLength: arcLength,
          arcRatio: arcRatio,
          arcWidth: arcWidth,
          layoutPaintOrder: layoutPaintOrder,
          minHoleWidthForCenterContent: minHoleWidthForCenterContent,
          startAngle: startAngle,
          strokeWidthPx: strokeWidthPx,
          arcRendererDecorators: arcRendererDecorators);