FFLineChart_LegacyAxisLabels constructor

FFLineChart_LegacyAxisLabels({
  1. FFLineChart_LegacyAxisLabel? bottom,
  2. FFLineChart_LegacyAxisLabel? left,
})

Implementation

factory FFLineChart_LegacyAxisLabels({
  FFLineChart_LegacyAxisLabel? bottom,
  FFLineChart_LegacyAxisLabel? left,
}) {
  final result = create();
  if (bottom != null) result.bottom = bottom;
  if (left != null) result.left = left;
  return result;
}