getRenderTime method

ArcRendererConfig<DateTime> getRenderTime()

Implementation

common.ArcRendererConfig<DateTime> getRenderTime() {
  return common.ArcRendererConfig<DateTime>(
    arcLength: arcLength,
    arcWidth: arcWidth,
    arcRendererDecorators: [
      if (arcLabelDecorator != null) arcLabelDecorator!.getRenderTime(),
    ],
    startAngle: startAngle,
    strokeWidthPx: strokeWidthPx,
    arcRatio: arcRatio,
  );
}