FFChartLabelFormatInfo constructor
FFChartLabelFormatInfo({
- FFNumberFormat? numberFormat,
- FFDateTimeFormat? dateTimeFormat,
- FFChartLabelFormatInfo_LabelFormatType? labelFormatType,
Implementation
factory FFChartLabelFormatInfo({
FFNumberFormat? numberFormat,
FFDateTimeFormat? dateTimeFormat,
FFChartLabelFormatInfo_LabelFormatType? labelFormatType,
}) {
final result = create();
if (numberFormat != null) result.numberFormat = numberFormat;
if (dateTimeFormat != null) result.dateTimeFormat = dateTimeFormat;
if (labelFormatType != null) result.labelFormatType = labelFormatType;
return result;
}