FFPieChart_FFPieChartSection constructor

FFPieChart_FFPieChartSection({
  1. @Deprecated('This field is deprecated.') FFColor? legacyBorderColor,
  2. double? borderWidth,
  3. double? radius,
  4. FFValue? borderColor,
})

Implementation

factory FFPieChart_FFPieChartSection({
  @$core.Deprecated('This field is deprecated.') FFColor? legacyBorderColor,
  $core.double? borderWidth,
  $core.double? radius,
  FFValue? borderColor,
}) {
  final result = create();
  if (legacyBorderColor != null) result.legacyBorderColor = legacyBorderColor;
  if (borderWidth != null) result.borderWidth = borderWidth;
  if (radius != null) result.radius = radius;
  if (borderColor != null) result.borderColor = borderColor;
  return result;
}