FFLineChart_LegacyAxisLabels constructor
FFLineChart_LegacyAxisLabels({
- FFLineChart_LegacyAxisLabel? bottom,
- 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;
}