FFChartAxisInfo_AxisLabel constructor
FFChartAxisInfo_AxisLabel({})
Implementation
factory FFChartAxisInfo_AxisLabel({
FFText? title,
$core.bool? showLabels,
FFText? labelStyle,
$core.double? labelInterval,
FFChartLabelFormatInfo? labelFormat,
$core.double? reservedSize,
}) {
final result = create();
if (title != null) result.title = title;
if (showLabels != null) result.showLabels = showLabels;
if (labelStyle != null) result.labelStyle = labelStyle;
if (labelInterval != null) result.labelInterval = labelInterval;
if (labelFormat != null) result.labelFormat = labelFormat;
if (reservedSize != null) result.reservedSize = reservedSize;
return result;
}