FFChartLabelFormatInfo constructor

FFChartLabelFormatInfo({
  1. FFNumberFormat? numberFormat,
  2. FFDateTimeFormat? dateTimeFormat,
  3. 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;
}