FFPieChart_FFPieChartSection constructor
FFPieChart_FFPieChartSection({
- @Deprecated('This field is deprecated.') FFColor? legacyBorderColor,
- double? borderWidth,
- double? radius,
- 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;
}