name property
Property to provide name for the technical indicators.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
indicators: <TechnicalIndicators<dynamic, dynamic>>[
SmaIndicator<dynamic, dynamic>(
name :'indicators',
),
],
));
}
Implementation
final String? name;